For the complete documentation index, see llms.txt. This page is also available as Markdown.

Products

Get Product Details

get

Retrieves detailed information about a specific product, including prices in different currencies.

Path parameters
idstring · uuidRequired

Product ID

Query parameters
vinteger · enumRequired

API version, must be 1

Possible values:
Responses
200

Product details successfully retrieved

application/json

Represents a product that can be purchased

idstring · uuidOptional

Unique identifier of the product

namestringOptional

Product name

descriptionstringOptional

Detailed product description

imagestring · uriOptional

URL to the product image

created_atstring · date-timeOptional

Timestamp when the product was created

updated_atstring · date-timeOptional

Timestamp of the last product update

get/product/{id}
GET /product/{id}?v=1 HTTP/1.1
Host: api.simplepay.ai
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "name": "text",
  "description": "text",
  "image": "https://example.com",
  "created_at": "2026-01-01T00:00:00.000Z",
  "updated_at": "2026-01-01T00:00:00.000Z",
  "prices": [
    {
      "price": 1,
      "currency": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "symbol": "text",
        "code": 1
      }
    }
  ]
}

Last updated