Skip to main content
GET
/
programs
List Card Programs
curl --request GET \
  --url https://api.fyatu.com/api/v3.20/programs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "message": "Programs retrieved",
  "data": {
    "programs": [
      {
        "programId": "CP-A1B2C3D4E5F6G7H8",
        "name": "Employee Expense Program",
        "description": "Cards for company employees",
        "provider": "HOS",
        "plan": {
          "name": "Growth",
          "monthlyFee": 49
        },
        "subscriptionStatus": "ACTIVE",
        "subscriptionExpiresAt": "2026-05-30T00:00:00+00:00",
        "status": "ACTIVE",
        "productCount": 2,
        "createdAt": "2026-04-01T00:00:00+00:00"
      }
    ]
  },
  "meta": {
    "requestId": "req_abc123",
    "timestamp": "2026-04-30T10:30:00+00:00"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.fyatu.com/llms.txt

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

Overview

Returns all card programs associated with your business. A Card Program defines the contractual terms and limits negotiated between your business and FYATU — including supported card brands, currencies, and pricing. Programs are created and configured by the FYATU team. This endpoint lets you read your program details via the API.

Response Fields

FieldTypeDescription
programIdstringUnique program identifier
namestringProgram name (as configured in Dashboard)
statusstringACTIVE or INACTIVE
productCountintegerNumber of card products defined under this program
createdAtstringProgram creation timestamp

Typical Response

Most businesses have one active program. Multiple programs may exist if you have separate agreements for different card brands or currencies.
Card Products are defined within a program. Use GET /programs/{programId}/products to see available products and their productId values for card issuance.

Authorizations

Authorization
string
header
required

JWT access token obtained from POST /auth/token

Response

Programs retrieved

The response is of type object.