Skip to main content
GET
/
virtual-cards
/
action
/
card
/
{id}
Get Virtual Card
curl --request GET \
  --url https://getmipay.com/api/v1/virtual-cards/action/card/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "card_id": "CARD_123456",
    "user_id": "SP6VC",
    "card_number": "4111111111111111",
    "expiry_date": "12/2026",
    "cvv": "123",
    "balance": 10,
    "currency": "USD",
    "card_type": "VISA",
    "status": "active",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

JWT bearer token returned by POST /action/auth. Send protected requests with: Authorization: Bearer . Tokens expire after 24 hours.

Path Parameters

id
string
required

Virtual card ID

Example:

"CARD_123456"

Response

Card retrieved successfully

success
boolean
Example:

true

data
object