v0 Platform API/API Reference/Rate limits

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