Skip to main content
GET
/
api
/
v1
/
gift-cards
/
{country_code}
/
products
List Gift Cards by Country
curl --request GET \
  --url https://api.payvessel.com/api/v1/gift-cards/{country_code}/products \
  --header 'api-key: <api-key>' \
  --header 'api-secret: <api-key>'
{
  "status": true,
  "message": "<string>",
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "brandId": "<string>",
      "productType": {
        "id": "<string>",
        "name": "<string>"
      },
      "currency": "<string>",
      "image": "<string>"
    }
  ]
}

Authorizations

api-key
string
header
required
api-secret
string
header
required

Path Parameters

country_code
string
required

Response

Successful Response

status
boolean
required
message
string
required
data
ProductSchema · object[]
required