Quotas
GET https://api.synthetic.new/v2/quotas
Retrieve information about your API usage quotas and limits. blah
Tip
/quotas requests do not count against your subscription limits!
The Synthetic API is still under development.
If there is more data you would like to see and access, please let us know!
Example Request
- Python
- TypeScript
- curl
import requests
headers = {
"Authorization": "Bearer SYNTHETIC_API_KEY"
}
response = requests.get(
"https://api.synthetic.new/v2/quotas",
headers=headers
)
print(response.json())
Example Response
- json
{
"subscription": {
"limit": 135,
"requests": 0,
"renewsAt": "2025-09-21T14:36:14.288Z"
}
}