DELETE /user/subscription_tokens/{provider}
Delete your subscription token for a provider.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| DELETE | /v1/user/subscription_tokens/{provider} |
Your sessions stop billing your subscription immediately, and the usage reading goes with it — it described that token's plan.
Path parameters
providerenumrequired
Named for the harness the token drives, not the vendor behind it: a developer connects "my Claude subscription", and the path segment they type is `claude`.
one of
claudecodexcurl -X DELETE \
"https://api.ellipsis.dev/v1/user/subscription_tokens/{provider}" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.user.subscription_tokens.delete(
"claude",
)
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.user.subscriptionTokens.delete('claude');
console.log(result);