Find Rate Limit
Retrieves rate limit information for a given scope. Useful for monitoring usage limits and avoiding throttling.
GET/v1/rate-limits
Usage
TypeScript Example
import { v0 } from 'v0-sdk'const result = await v0.rateLimits.find()console.log(result)API Signature
Request
Query Parameters
scope?: string
The context or namespace to check rate limits for (e.g., a project slug or feature area).
Response
remaining?: number
reset?: number
limit: number
dailyLimit?: object
Daily message limit information for free users.
limit: number
The maximum number of daily messages allowed for free users.
remaining: number
The number of messages the user has remaining for the day.
reset: number
Unix timestamp (in milliseconds) when the daily limit resets.
isWithinGracePeriod: boolean
Whether the user is within the 48-hour grace period for new users, during which usage tracking is disabled.