For the complete documentation index, see llms.txt. This page is also available as Markdown.

Cards

Read Carbon card metadata and transactions with the Zebec Partner API.

The Cards endpoints let a partner read card metadata and transaction history for users under their partner scope.

Endpoints

Get card metadata

GET /partner/v1/cards
Authorization: Bearer <accessToken>

Returns card summary metadata. PAN and CVV are not included in the response.

List card transactions

GET /partner/v1/cards/transactions
Authorization: Bearer <accessToken>

Returns a list of card transactions.

Required scope

Both endpoints require the cards:read scope on your partner API key.

User resolution

The user is derived from the Bearer token returned by POST /partner/v1/auth/otp/verify. Do not supply a user identifier in the request path or body.

Common use cases

  • Display a user's card status and balance inside your app.

  • Show recent card activity.

  • Poll whether a top-up has landed before showing updated balances.

For full schemas and example responses, see the Swagger UI.

Last updated