# Palmyr Cards

> Palmyr Cards is a paid API for AI agents from palmyr.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lists all prepaid cards on a Palmyr account, returning status, last 4 digits, and balance for each card (no full card numbers).

## Facts

- Endpoint: GET https://palmyr.ai/cards
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/palmyr-cards-3ba1e37f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4a4Udwy0XFX9dVBLYlh3s

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability palmyr-cards-3ba1e37f
```

Example prompt: Can you pull up all my Palmyr prepaid cards and show me which ones are active along with their current balances?

## When to prefer this

Use this endpoint when you need a quick overview of all prepaid cards and their balances for an account. Prefer this over fetching individual cards (/cards/:id) when you don't yet know the specific card ID, or when you need to compare balances across multiple cards at once.

## Known failure modes

- Authentication failure — missing or invalid credentials returns 401
- No cards found — account has no prepaid cards, returns empty list
- Rate limit exceeded — too many requests in a short window
- Service unavailable — upstream card provider outage

## How this service works

List your prepaid cards (status, last4, balance — never full card numbers; those are per-card via GET /cards/:id).

## Output

A list of prepaid card summaries for the authenticated user, each including the card's current status (e.g. active, inactive), last 4 digits of the card number, and available balance. Full card numbers are not returned by this endpoint.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/palmyr-cards-3ba1e37f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from palmyr.ai](https://www.zero.xyz/host/palmyr.ai/llms.txt)
