Products
Retrieves detailed information about a specific product, including prices in different currencies.
Path parameters
idstring · uuidRequired
Product ID
Query parameters
vinteger · enumRequiredPossible values:
API version, must be 1
Responses
200
Product details successfully retrieved
application/json
401
Unauthorized - Invalid or missing authentication token
404
Product not found
get
GET /product/{id} HTTP/1.1
Host: api.simplepay.ai
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"image": "https://example.com",
"created_at": "2025-06-27T12:24:03.611Z",
"updated_at": "2025-06-27T12:24:03.611Z",
"prices": [
{
"price": 1,
"currency": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"symbol": "text",
"code": 1
}
}
]
}
Last updated
Was this helpful?