v0 Platform API/Rate limits

Find Rate Limit

Retrieves rate limit information for a given scope. Useful for monitoring usage limits and avoiding throttling.

GET /rate-limits
import { v0 } from 'v0-sdk'

const result = await v0.rateLimits.find()

console.log(result)
GET /rate-limits
curl -X GET https://api.v0.dev/rate-limits \
  -H "Authorization: Bearer $V0_API_KEY" \
  -H "Content-Type: application/json"

Parameters

Query Parameters

scope string

The context or namespace to check rate limits for (e.g., a project slug or feature area).


Response

Response Body

remaining number


reset number


limit number Required