miro-rate-limits

Featured

Implement Miro REST API v2 rate limiting with the credit-based system, exponential backoff, and request queuing. Trigger with phrases like "miro rate limit", "miro throttling", "miro 429", "miro retry", "miro backoff", "miro credits".

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

# Miro Rate Limits ## Overview Miro measures API usage in **credits**, not raw request counts. Each endpoint consumes a different number of credits based on complexity. The global limit is **100,000 credits per minute** per app. ## Credit System ### Rate Limit Levels Each Miro REST API endpoint is assigned a rate limit level that determines its credit cost: | Level | Credits per Call | Example Endpoints | |-------|-----------------|-------------------| | Level 1 | Lower cost | GET single board, GET single item | | Level 2 | Medium cost | POST create sticky note, POST create shape, POST create connector | | Level 3 | Higher cost | Batch operations, complex queries | | Level 4 | Highest cost | Export, bulk data operations | The exact credit cost per level is subject to change. Monitor via response headers. ### Rate Limit Response Headers Every Miro API response includes these headers: | Header | Description | Example | |--------|-------------|---------| | `X-RateLimit-Limit` | Total credits allocated per minute | `100000` | | `X-RateLimit-Remaining` | Credits remaining in current window | `99850` | | `X-RateLimit-Reset` | Unix timestamp when window resets | `1700000060` | When rate limited, the response also includes: | Header | Description | Example | |--------|-------------|---------| | `Retry-After` | Seconds to wait before retrying | `30` | ## Exponential Backoff with Jitter ```typescript interface BackoffConfig { maxRetries: number; baseDelayMs: number; ...

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

AI & Automation Featured

miro-cost-tuning

Optimize Miro API costs through credit monitoring, request reduction, and plan selection based on the credit-based rate limiting model. Trigger with phrases like "miro cost", "miro billing", "reduce miro costs", "miro pricing", "miro credits usage".

2,266 Updated today
jeremylongshore
AI & Automation Featured

miro-performance-tuning

Optimize Miro REST API v2 performance with caching, cursor pagination, request batching, and connection pooling for high-throughput integrations. Trigger with phrases like "miro performance", "optimize miro", "miro latency", "miro caching", "miro slow", "miro batch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

miro-observability

Set up observability for Miro REST API v2 integrations with Prometheus metrics, OpenTelemetry traces, structured logging, and Grafana dashboards. Trigger with phrases like "miro monitoring", "miro metrics", "miro observability", "monitor miro", "miro alerts", "miro tracing".

2,266 Updated today
jeremylongshore
AI & Automation Featured

mistral-rate-limits

Implement Mistral AI rate limiting, backoff, and request management. Use when handling rate limit errors, implementing retry logic, or optimizing API request throughput for Mistral AI. Trigger with phrases like "mistral rate limit", "mistral throttling", "mistral 429", "mistral retry", "mistral backoff".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fireflies-rate-limits

Implement Fireflies.ai rate limiting, backoff, and request queuing. Use when handling rate limit errors, implementing retry logic, or optimizing API request throughput for Fireflies.ai. Trigger with phrases like "fireflies rate limit", "fireflies throttling", "fireflies 429", "fireflies retry", "fireflies backoff".

2,266 Updated today
jeremylongshore