Skip to main content
GET
/
api
/
v1
/
products
/
{id}
Buscar produto
curl --request GET \
  --url https://api.datacrazy.io/v1/api/api/v1/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id_sku": "SKU12345",
  "name": "Nome do Produto",
  "price": 199.99
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json
id_sku
string

Id SKU do produto

Example:

"SKU12345"

name
string

Nome do produto

Example:

"Nome do Produto"

price
number

Preço do produto

Example:

199.99