cURL
curl --request GET \ --url https://api.example.com/products/{hash}
{ "200": {}, "401": {}, "404": {}, "500": {} }
Consulta os detalhes completos de um produto específico
GET https://api.klivopay.com.br/api/public/v1/products/{hash}
curl -X GET 'https://api.klivopay.com.br/api/public/v1/products/prod123abc?api_token=seu_token_aqui'
{ "success": true, "data": { "hash": "prod123abc", "title": "Curso de Marketing Digital", "cover": "https://cdn.klivopay.com.br/products/cover123.jpg", "sale_page": "https://meucurso.com.br/marketing", "product_type": "digital", "delivery_type": "email", "payment_type": 1, "amount": 29900, "category": { "id": 5, "name": "Educação" }, "offers": [ { "hash": "offer123", "title": "Oferta Especial", "amount": 19900, "cover": "https://cdn.klivopay.com.br/offers/offer123.jpg" } ], "created_at": "2025-01-15T10:00:00Z", "updated_at": "2025-01-15T10:00:00Z" } }