List all virtual cards for the company
curl https://api.usenaive.ai/v1/cards \
-H "Authorization: Bearer nv_sk_live_..."
{
"cards": [
{
"id": "card-uuid-1",
"name": "Marketing Card",
"provider": "stripe_issuing",
"status": "active",
"spending_limit_cents": 500000,
"balance_cents": 350000,
"agent_id": "agent-uuid-1",
"created_at": "2026-02-01T10:00:00Z"
},
{
"id": "card-uuid-2",
"name": "Research Card",
"provider": "reloadly",
"status": "active",
"spending_limit_cents": 200000,
"balance_cents": 200000,
"agent_id": null,
"created_at": "2026-02-05T14:00:00Z"
}
]
}
Returns all virtual cards associated with your company. Optionally filter by agent assignment.Documentation Index
Fetch the complete documentation index at: https://usenaive.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | No | Filter cards assigned to a specific agent |
curl https://api.usenaive.ai/v1/cards \
-H "Authorization: Bearer nv_sk_live_..."
{
"cards": [
{
"id": "card-uuid-1",
"name": "Marketing Card",
"provider": "stripe_issuing",
"status": "active",
"spending_limit_cents": 500000,
"balance_cents": 350000,
"agent_id": "agent-uuid-1",
"created_at": "2026-02-01T10:00:00Z"
},
{
"id": "card-uuid-2",
"name": "Research Card",
"provider": "reloadly",
"status": "active",
"spending_limit_cents": 200000,
"balance_cents": 200000,
"agent_id": null,
"created_at": "2026-02-05T14:00:00Z"
}
]
}
naive cards
naive cards --agent-id <uuid>
naive_cards_list
{
"agent_id": "agent-uuid-1"
}
curl https://api.usenaive.ai/v1/cards \
-H "Authorization: Bearer nv_sk_live_..."
{
"cards": [
{
"id": "card-uuid-1",
"name": "Marketing Card",
"provider": "stripe_issuing",
"status": "active",
"spending_limit_cents": 500000,
"balance_cents": 350000,
"agent_id": "agent-uuid-1",
"created_at": "2026-02-01T10:00:00Z"
},
{
"id": "card-uuid-2",
"name": "Research Card",
"provider": "reloadly",
"status": "active",
"spending_limit_cents": 200000,
"balance_cents": 200000,
"agent_id": null,
"created_at": "2026-02-05T14:00:00Z"
}
]
}