Skip to main content
POST
/
v1
/
cards
/
:id
/
check-payment
curl -X POST https://api.usenaive.ai/v1/cards/card-uuid-1/check-payment \
  -H "Authorization: Bearer nv_sk_live_..."
{
  "card": {
    "id": "card-uuid-1",
    "name": "Marketing Card",
    "provider": "stripe_issuing",
    "status": "active",
    "spending_limit_cents": 5000,
    "balance_cents": 5000,
    "created_at": "2026-03-01T10:00:00Z"
  },
  "status": "active"
}

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.

Checks the current payment/checkout status of a card. Use this after creating a card to verify whether payment has completed.

Possible Statuses

StatusDescription
activePayment successful, card is ready to use
pending_paymentCheckout session created, awaiting payment
payment_failedPayment was declined or expired
issuing_failedPayment succeeded but card issuance failed
curl -X POST https://api.usenaive.ai/v1/cards/card-uuid-1/check-payment \
  -H "Authorization: Bearer nv_sk_live_..."
{
  "card": {
    "id": "card-uuid-1",
    "name": "Marketing Card",
    "provider": "stripe_issuing",
    "status": "active",
    "spending_limit_cents": 5000,
    "balance_cents": 5000,
    "created_at": "2026-03-01T10:00:00Z"
  },
  "status": "active"
}

CLI

naive cards check-payment <id>

MCP

Tool: naive_cards_check_payment
{
  "card_id": "card-uuid-1"
}