Skip to main content
GET
/
partner
/
cards
List cards
curl --request GET \
  --url https://api.contro.me/v1/partner/cards \
  --header 'x-contro-api-key: <api-key>'
{
  "data": [
    {
      "id": "card_def456",
      "type": "virtual",
      "brand": "Visa",
      "status": "active",
      "nameOnCard": "JANE DOE",
      "limit": 5000,
      "last4": "0000",
      "programId": "prog_xyz",
      "createdAt": "2026-03-20T14:30:00Z",
      "spendControl": {
        "sales": {
          "perTransaction": 200,
          "daily": 1000,
          "monthly": 20000,
          "allTime": 50000
        },
        "cash": {
          "perTransaction": 200,
          "daily": 1000,
          "monthly": 20000,
          "allTime": 50000
        },
        "spent": {
          "sales": {
            "perTransaction": 200,
            "daily": 1000,
            "monthly": 20000,
            "allTime": 50000
          },
          "cash": {
            "perTransaction": 200,
            "daily": 1000,
            "monthly": 20000,
            "allTime": 50000
          }
        }
      }
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123
}

Documentation Index

Fetch the complete documentation index at: https://partner-docs.contro.dev/llms.txt

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

Authorizations

x-contro-api-key
string
header
required

Partner API key (sk_live_* for production, sk_test_* for sandbox)

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:20

Number of items per page (1-100)

Required range: 1 <= x <= 100
status
enum<string>

Filter by card status

Available options:
created,
active,
frozen,
cancelled
Example:

"active"

Response

List of cards

data
object[]
required
total
number
required
page
number
required
limit
number
required