Skip to main content

Get Card

Retrieve detailed information about a specific card.

GET /projects/{projectId}/cards/{cardId}

Path Parameters​

ParameterTypeRequiredDescription
projectIdUUIDYesProject ID
cardIdUUIDYesCard ID

Request​

curl -X GET "https://api.maes-platform.nuvoni.eu/v1/projects/{projectId}/cards/{cardId}" \
-H "Authorization: Bearer sk_sandbox_xxxxx"

Response​

{
"id": "09c9861c-4c4b-411f-be85-c16ed7e26da4",
"cardNumber": "782521009000153700",
"maesCardId": "134208",
"environment": "production",
"status": "active",
"licensePlate": "AB-123-CD",
"driver": "John Doe",
"expirationDate": "2027-12-31T00:00:00.000Z",
"authGasoline": true,
"authDiesel": true,
"authLpg": true,
"authHeatingOil": true,
"syncStatus": "synced",
"syncErrorMessage": null,
"lastSyncedAt": "2025-12-27T16:24:05.712Z",
"notes": null,
"internalReference": null,
"createdAt": "2025-12-26T10:30:00.000Z",
"updatedAt": "2025-12-27T16:24:05.712Z"
}

Response Fields​

FieldTypeDescription
idstring (UUID)Unique card identifier
cardNumberstringPhysical card number
maesCardIdstringMAES internal ID
environmentenumsandbox or production
statusenumnew, active, inactive
licensePlatestringVehicle license plate
driverstringDriver name
expirationDatedatetimeCard expiration date
authGasolinebooleanGasoline authorization
authDieselbooleanDiesel authorization
authLpgbooleanLPG authorization
authHeatingOilbooleanHeating oil authorization
syncStatusenumsynced, pending, failed
syncErrorMessagestringLast sync error (if failed)
lastSyncedAtdatetimeLast sync timestamp
notesstringInternal notes
internalReferencestringInternal reference ID
createdAtdatetimeCreation timestamp
updatedAtdatetimeLast update timestamp

Errors​

Card Not Found​

Status: 404 Not Found

{
"code": "error.card_not_found",
"message": "Card not found"
}