Get Cards

get/v1/cards/{card_id}

Fetches a single card by its public id within the active workspace. Read only, no side effects. Returns 404 when the id is unknown or falls outside the caller's workspace scope.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
card_idstring <uuid>YesPublic UUID of the card.e.g. d4e5f6a7-0000-4000-8000-0000000000a4

Query parameters

NameTypeRequiredDescription
workspaceIdstring <uuid>NoExplicit workspace scope. The authenticated user must hold an active membership in this workspace. Defaults to the session workspace when omitted.e.g. a1b2c3d4-0000-4000-8000-000000000001

Request

cURL
curl -X GET https://api.wellapp.ai/v1/cards/{card_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

200The requested card.

{
  "data": {
    "type": "card",
    "id": "d4e5f6a7-0000-4000-8000-0000000000a4",
    "attributes": {
      "card_id": "d4e5f6a7-0000-4000-8000-0000000000a4",
      "brand": "visa",
      "type": "credit",
      "cardholder_name": "Remy Okafor",
      "last_four_digits": "8830",
      "anonymized_pan": "************8830",
      "expiration_date": "2029-03-31",
      "issue_date": "2026-01-15",
      "start_date": "2026-01-15",
      "created_at": "2026-01-15T12:00:00Z",
      "updated_at": "2026-01-15T12:00:00Z",
      "deleted_at": null
    },
    "relationships": {
      "company": {
        "data": {
          "type": "company",
          "id": "00000000-0000-4000-8000-000000000001"
        }
      },
      "people": {
        "data": {
          "type": "people",
          "id": "00000000-0000-4000-8000-000000000001"
        }
      }
    }
  }
}

401Unauthorized

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404Not found

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}