MakePhotos Docs
API Reference

GET /credits

Check credit balance and subscription info — MakePhotos API reference.

GET /api/v1/credits

Query your current credit balance and subscription details.

Request

curl "https://makephotos.ai/api/v1/credits?key=mk_live_..."

No request body required.

Response

{
  "monthly_remaining": 800,
  "topup_remaining": 47,
  "total": 847,
  "credits_limit": 1000,
  "tier": "pro",
  "status": "active"
}
FieldTypeDescription
monthly_remainingnumberCredits left in current billing cycle
topup_remainingnumberPurchased top-up credits (never expire)
totalnumbermonthly_remaining + topup_remaining
credits_limitnumberMonthly credit allowance for your tier
tierstringstarter, pro, max, or ultra
statusstringactive, canceled, past_due, or trialing

Errors

StatusCodeDescription
401invalid_api_keyInvalid or missing API key
500internal_errorFailed to fetch profile

On this page