Retrieve a public catalog CMS product
curl --request GET \
--url https://api.simplepay.mx/v1/catalog/products/{id_or_slug} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/catalog/products/{id_or_slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/catalog/products/{id_or_slug}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"active": true,
"categories": [
{
"active": true,
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"object": "<unknown>",
"parentCategoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"sortOrder": 123,
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"content": {},
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"marketingFeatures": [
"<string>"
],
"name": "<string>",
"object": "<unknown>",
"primaryCategory": {
"active": true,
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"object": "<unknown>",
"parentCategoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"sortOrder": 123,
"updatedAt": "2023-11-07T05:31:56Z"
},
"slug": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"bundle": {
"versionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versionNumber": 2,
"components": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"object": "<unknown>",
"slug": "<string>",
"name": "<string>",
"description": "<string>",
"fallback": {},
"quantity": 2,
"categories": [
{
"active": true,
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"object": "<unknown>",
"parentCategoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"sortOrder": 123,
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
]
}
}Retrieve a public catalog CMS product
Referencia detallada para GET /v1/catalog/products/.
GET
https://api.simplepay.mx
/
v1
/
catalog
/
products
/
{id_or_slug}
Retrieve a public catalog CMS product
curl --request GET \
--url https://api.simplepay.mx/v1/catalog/products/{id_or_slug} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/catalog/products/{id_or_slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/catalog/products/{id_or_slug}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"active": true,
"categories": [
{
"active": true,
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"object": "<unknown>",
"parentCategoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"sortOrder": 123,
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"content": {},
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"marketingFeatures": [
"<string>"
],
"name": "<string>",
"object": "<unknown>",
"primaryCategory": {
"active": true,
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"object": "<unknown>",
"parentCategoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"sortOrder": 123,
"updatedAt": "2023-11-07T05:31:56Z"
},
"slug": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"bundle": {
"versionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versionNumber": 2,
"components": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"object": "<unknown>",
"slug": "<string>",
"name": "<string>",
"description": "<string>",
"fallback": {},
"quantity": 2,
"categories": [
{
"active": true,
"description": "<string>",
"fallback": {},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"object": "<unknown>",
"parentCategoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"sortOrder": 123,
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
]
}
}Uso
Usalo para leer catalogo publico y construir experiencias de discovery sin duplicar datos de productos o categorias.Antes de llamar
| Tema | Detalle |
|---|---|
| Metodo | GET |
| Ruta | /v1/catalog/products/{id_or_slug} |
| Auth | Bearer API key del ambiente correcto. |
| Scope | catalog:read |
| Idempotencia | No aplica para lecturas. |
| Guia relacionada | API Reference overview |
Patron recomendado
- Ejecuta esta lectura desde backend cuando incluya datos privados del tenant.
- Consulta el bloque OpenAPI de esta pagina para el shape exacto de parametros, body y respuestas.
Ejemplo minimo
terminal
curl -sS "https://api.simplepay.mx/v1/catalog/products/experiencia-isla" \
-H "Authorization: Bearer $SIMPLEPAY_API_KEY"
Errores a manejar
400indica payload, parametros o estado invalido.401o403indican API key, ambiente o scopes incorrectos.404significa que el recurso no existe para ese tenant o ambiente.429y5xxse pueden reintentar con backoff; en writes conserva la misma idempotency key.
Contrato OpenAPI
El playground, parametros, body y respuestas de abajo salen de/openapi.json. Si el contrato cambia, actualiza la spec y regenera esta pagina.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Available options:
es, en, pt, de, fr, zh-Hans, zh, zh-hans Response
200 - application/json
Public catalog CMS product
Hide child attributes
Hide child attributes
Available options:
es, en, pt, de, fr, zh-Hans Available options:
es, en, pt, de, fr, zh-Hans Hide child attributes
Hide child attributes
Available options:
es, en, pt, de, fr, zh-Hans Available options:
appointment, bundle, class, scheduled_offer, experience, package, rental, service, standard, date_range Hide child attributes
Hide child attributes
Required range:
x >= 1Available options:
fixed_price, sum_components Hide child attributes
Hide child attributes
Available options:
es, en, pt, de, fr, zh-Hans Available options:
appointment, bundle, class, scheduled_offer, experience, package, rental, service, standard, date_range Required range:
x >= 1Hide child attributes
Hide child attributes
Available options:
es, en, pt, de, fr, zh-Hans Last modified on June 21, 2026
⌘I