cURL
curl --request GET \ --url https://api.tavily.com/usage \ --header 'Authorization: Bearer <token>'
{ "key": { "usage": 150, "limit": 1000 }, "account": { "current_plan": "Bootstrap", "plan_usage": 500, "plan_limit": 15000, "paygo_usage": 25, "paygo_limit": 100 } }
Get API key and account usage details
Bearer authentication header in the form Bearer <token>, where <token> is your Tavily API key (e.g., Bearer tvly-YOUR_API_KEY).
Usage details returned successfully
The response is of type object.
object