For the complete documentation index, see llms.txt. This page is also available as Markdown.

Plan

Check Rate Limit

get

Returns your current API usage and daily quota. Use this to monitor how many requests you have remaining before hitting the daily limit.

Authorizations
AuthorizationstringRequired

Bearer token for authentication

Responses
200

Successful Response

application/json
remainingintegerRequired
limitintegerRequired
get/rate-limit
GET /rate-limit HTTP/1.1
Host: api.getuntitled.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Successful Response

{
  "remaining": 1,
  "limit": 1
}

Last updated

Was this helpful?