Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.capout.ai/claims
const options = {method: 'GET'};fetch('https://api.capout.ai/claims', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requestsurl = "https://api.capout.ai/claims"response = requests.get(url)print(response.text)
{ "organization_id": "<string>", "available_claims": 123, "expiring_claims_in_30_days": 0, "total_granted_claims": 0, "total_used_claims": 0, "buckets": [] }
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>", "input": "<unknown>", "ctx": {} } ]}
Check claim balance for the authenticated organization.
Successful Response
Response body for GET /claims.
Show child attributes