---
title: "Find Rate Limit"
method: GET
path: "/rate-limits"
tags: ["rateLimits"]
---

# Find Rate Limit

`GET /rate-limits`

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

## Query parameters

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

## Response `200`

Success

- object
  - `remaining` number
  - `reset` number
  - `limit` number, required
  - `dailyLimit` object — Daily message limit information for free users.
    - `limit` number, required — The maximum number of daily messages allowed for free users.
    - `remaining` number, required — The number of messages the user has remaining for the day.
    - `reset` number, required — Unix timestamp (in milliseconds) when the daily limit resets.
    - `isWithinGracePeriod` boolean, required — Whether the user is within the 48-hour grace period for new users, during which usage tracking is disabled.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `413` — Payload Too Large
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

## Changes

- **2026-01-20** `86302d0793b1` — 1 info
  - added the optional property `dailyLimit` to the response with the `200` status
- **2025-08-24** `3521652a43a7` — 1 warning
  - removed the optional property `dailyLimit` from the response with the `200` status

[Change history](https://skmtc.dev/vercel/apis/v0-platform-api-beta/changes/rate-limits/get.md)

---

[API](https://skmtc.dev/vercel/apis/v0-platform-api-beta.md) · [All operations](https://skmtc.dev/vercel/apis/v0-platform-api-beta/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/vercel/v0-platform-api-beta/revisions/79811cd54faa/schema)
