finta-rate-limits

Featured

Understand Finta usage limits and plan tiers. Trigger with phrases like "finta limits", "finta plan limits".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Finta Rate Limits ## Overview Finta operates as a web-first fundraising platform without a traditional REST API, so rate limits manifest as plan-tier usage caps rather than HTTP request quotas. When building integrations through Finta's webhook events or Zapier connectors, the bottleneck is typically the number of investor pipeline records, deal room operations, and Aurora AI suggestion calls you can make within your plan tier. Teams running active fundraising rounds need to understand these ceilings to avoid mid-raise disruptions. ## Rate Limit Reference | Endpoint / Feature | Limit | Window | Scope | |---------------------|-------|--------|-------| | Investor pipeline records | 50 (Free) / Unlimited (Pro) | Rolling | Per workspace | | Deal room creation | 1 (Free) / Unlimited (Pro) | Rolling | Per workspace | | Aurora AI suggestions | 10/day (Free) / 100/day (Pro) | 24 hours | Per user | | Webhook event delivery | 100 events | 1 minute | Per workspace | | Data room file uploads | 25 (Free) / Unlimited (Pro) | Rolling | Per deal room | ## Rate Limiter Implementation ```typescript class FintaUsageTracker { private counts: Map<string, { used: number; limit: number; resetAt: number }> = new Map(); register(resource: string, limit: number, windowMs: number) { this.counts.set(resource, { used: 0, limit, resetAt: Date.now() + windowMs }); } async acquire(resource: string): Promise<boolean> { const entry = this.counts.get(resource); if (!entry) throw n...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category