CRDB tokens
Fund test and production Cordoba operations and manage organization balances.
Token types
| Type | Use | Current terms |
|---|---|---|
| Faucet CRDB | Development and testing | 80 tokens per request through a $0 checkout; no card required |
| Mainnet CRDB | Production operations | $0.25 per token |
Token checkout runs inside the signed-in dashboard with the browser session cookie. It does not use an organization API key. Both purchase modes return a Stripe Checkout URL.
POST /api/v1/cordoba/token
Content-Type: application/json
{ "type": "faucet", "slug": "your-org-slug", "format": "session" }POST /api/v1/cordoba/token
Content-Type: application/json
{ "type": "paid", "amount": 40, "slug": "your-org-slug", "format": "session" }Paid amounts are expressed in USD and must be multiples of 20. The current conversion is four CRDB per USD.
Balances
GET /api/v1/cordoba/token returns the organization owner's mainnet and faucet balances. Purchased tokens are automatically associated with the CordobaPhoto organization balance.
Send CRDB to a member
Organization owners can use POST /api/v1/cordoba/token with memberId, amount, and tokenType to send CRDB to one member wallet.
Roadmap
Transaction history, usage analytics, and bulk member distribution are planned but are not part of the current API.