Artha API
  1. Cards
  • Introduction
  • Authentication
  • KYC/KYB Requirements
  • API Setup Guide
  • Customers
    • Create Customer
      POST
    • List Customers
      GET
    • Get Customer
      GET
    • Update Customer
      PATCH
  • Cards
    • Submit KYC/KYB Applicant
      POST
    • Issue Card
      POST
    • Cards List
      GET
    • Get Card
      GET
    • Get Sensitive Card Details
      GET
  • Card Operations
    • Activate Card
      POST
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Cancel Card
      POST
    • Replace Card
      POST
    • Set / Reset Card PIN
      POST
    • Get Card Limits
      GET
    • Update Card Limits
      POST
  • Funding
    • Top Up Card
      POST
    • Get Card Balance
      GET
    • List Top-Up History
      GET
  • Transactions
    • List All Transactions
      GET
    • List Card Transactions
      GET
    • List Customer Transactions
      GET
    • Get Transaction
      GET
  • Products
    • List Products
    • Get Product
  • Utilities
    • Upload Documents
  • Webhook's
    • Webhooks
  1. Cards

Cards List

GET
{{baseUrl}}/api/v1/cardslist
Returns a paginated list of all cards. Filter by status, customer, product, or card type.

📤 Response Fields (per item)#

FieldTypeDescriptionNotes
idstring (uuid)- Example: a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11-
customer_idstring (uuid)--
product_idstring (uuid)--
product_namestring- Example: GBP Virtual Prepaidnullable
providerstring-nullable
card_typestringvirtual or physical. Example: virtualnullable
card_number_maskedstringLast 4 digits of the card number (e.g., ****4242). Example: ****4242nullable
currencystring- Example: GBP-
statusstringCard status: inactive, active, frozen, cancelled. Example: active-
balancenumber- Example: 450.0nullable
created_atstring (date-time)--
updated_atstring (date-time)-nullable

Request

Query Params

Header Params

Responses

🟢200
application/json
Cards retrieved.
Body

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{baseUrl}}/api/v1/cardslist?limit&offset&status&customer_id&product_id&card_type' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;'
Response Response Example
200 - Example 1
{}
Modified at 2026-02-18 14:35:16
Previous
Issue Card
Next
Get Card
Built with