GET
/
stats
/
remaining-credits
Get remaining credits
curl --request GET \
  --url https://api.callmelater.xyz/stats/remaining-credits \
  --header 'x-api-key: <api-key>'
{
  "creditsRemaining": 1500
}
Check how many credits are remaining in your account. Credits are consumed when scheduling requests.

Example Request

curl -X GET https://api.callmelater.xyz/stats/remaining-credits \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "creditsRemaining": 1500
}

Credit System

  • 1 credit = 1 scheduled request
  • Credits are deducted when you schedule a request
  • Credits are refunded if you cancel a request before execution
  • Monitor your usage to avoid running out of credits
  • Contact support to purchase additional credits

Use Cases

  • Budget Monitoring: Track credit consumption across your applications
  • Alerting: Set up alerts when credits are running low
  • Cost Management: Monitor costs and optimize usage patterns
  • Planning: Estimate credit needs for upcoming campaigns or operations

Authorizations

x-api-key
string
header
required

API key authentication. Include your API key in the x-api-key header.

Response

200
application/json

Remaining credits information

The response is of type object.