Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dacard.ai/llms.txt

Use this file to discover all available pages before exploring further.

Mint a short-lived token for the Claude Code skill. The skill exchanges the token for a session-scoped key on the user’s local machine, enabling the dacard-framework skill calls to read against the caller’s account.
curl -X POST https://app.dacard.ai/api/integrations/claude-code/mint-token \
  -H "Authorization: Bearer $DACARD_API_KEY"
PropertyValue
AuthRequired
TTL5 minutes
IdempotentNo (each call mints a new token)

Response

{
  "token": "cct_...",
  "expiresAt": "2026-05-06T12:05:00Z"
}

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
500INTERNAL_ERRORMint or write failed.
Use the token in the Claude Code skill installer flow:
claude code skills install dacard-framework --token cct_...