OK
Tiendup Public API (1.0.0)
API pública para integrar Tiendup 🔑 Para obtener una API Key, sigue los pasos de la documentación:
¿Cómo obtener tu API Key de Tiendup?
Download OpenAPI description
Overview
Tiendup
Languages
Servers
https://{business_slug}.public-api.tiendup.com
Security
ApiKeyAuth
- https://demo.public-api.tiendup.com/customers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://demo.public-api.tiendup.com/customers?page=1&limit=25' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "status": "OK", "data": [ { … } ], "countFiltered": 0, "count": 0, "previous": 0, "current": 0, "pages": 0, "next": 0 }
- https://demo.public-api.tiendup.com/customers/{customer_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://demo.public-api.tiendup.com/customers/40737 \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "status": "OK", "data": { "id": 41974, "name": "Roberta", "last_name": "Fernandez", "email": "customer2@example.com", "phone": "+1 202 555 1001", "identification": "string", "identification_type": "string", "company": "string", "tax_treatment": "string", "tax_id_type": "string", "tax_id_number": "string", "language": "", "member_id": 5783, "autologin_hash": "string", "is_seller": false, "contacts": [ … ], "addresses": [ … ], "orders": [ … ], "categories": [], "metafields": [], "seller": {}, "subscriptions": [] } }