POST /account/billing/claim-signup-credit
The "Claim $100" button.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| POST | /v1/account/billing/claim-signup-credit |
Runs the same idempotent billing bootstrap that otherwise fires lazily at the first session (Stripe customer + usage subscription + the signup grant). A repeat call is a no-op that returns the current state.
curl -X POST "https://api.ellipsis.dev/v1/account/billing/claim-signup-credit" \
-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.claim_signup_credit()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.account.billing.claimSignupCredit();
console.log(result);Request
Response
Example response · 200
{
"workflows_block_reason": "canceled"
}