GET /account/billing/auto-recharge
Get your automatic credit recharge settings.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/account/billing/auto-recharge |
An account without saved settings returns disabled defaults and no card. No payment-method identifier or card details are exposed.
curl "https://api.ellipsis.dev/v1/account/billing/auto-recharge" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.account.billing.auto_recharge.get()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.account.billing.autoRecharge.get();
console.log(result);Request
Response
Example response · 200
{
"amount_cents": 0,
"consecutive_failures": 0,
"enabled": false,
"has_card": false,
"last_attempted_at": "2026-01-01T00:00:00Z",
"min_threshold_cents": 0,
"threshold_cents": 0
}