Skip to main content
GET
/
api
/
v1
/
card-plans
curl -X GET https://api.uncash.io/api/v1/card-plans \
  -H "Authorization: Bearer uc_your_api_token_here"
{
  "success": true,
  "data": [
    {
      "id": 1,
      "name": "Standard",
      "description": "Basic virtual card with standard features",
      "limit": 1000.00,
      "creation_fee": 5.00,
      "created_at": "2025-01-01T10:00:00.000Z"
    },
    {
      "id": 2,
      "name": "Premium",
      "description": "Premium virtual card with enhanced limits",
      "limit": 5000.00,
      "creation_fee": 10.00,
      "created_at": "2025-01-01T10:00:00.000Z"
    },
    {
      "id": 3,
      "name": "Business",
      "description": "Business virtual card with high limits",
      "limit": 25000.00,
      "creation_fee": 25.00,
      "created_at": "2025-01-01T10:00:00.000Z"
    }
  ],
  "message": "Card plans retrieved successfully"
}

Response

success
boolean
Indicates if the request was successful
data
array
Array of available card plan objects
message
string
Success message
curl -X GET https://api.uncash.io/api/v1/card-plans \
  -H "Authorization: Bearer uc_your_api_token_here"
{
  "success": true,
  "data": [
    {
      "id": 1,
      "name": "Standard",
      "description": "Basic virtual card with standard features",
      "limit": 1000.00,
      "creation_fee": 5.00,
      "created_at": "2025-01-01T10:00:00.000Z"
    },
    {
      "id": 2,
      "name": "Premium",
      "description": "Premium virtual card with enhanced limits",
      "limit": 5000.00,
      "creation_fee": 10.00,
      "created_at": "2025-01-01T10:00:00.000Z"
    },
    {
      "id": 3,
      "name": "Business",
      "description": "Business virtual card with high limits",
      "limit": 25000.00,
      "creation_fee": 25.00,
      "created_at": "2025-01-01T10:00:00.000Z"
    }
  ],
  "message": "Card plans retrieved successfully"
}
Card Plan Selection: Choose the appropriate card plan based on your spending needs. Higher tier card plans have higher limits but also higher creation fees.