Skip to main content
GET
/
api
/
v1
/
products
Buscar produtos
curl --request GET \
  --url https://api.g1.datacrazy.io/api/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "count": 100,
  "data": [
    {
      "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.

Response

200 - application/json
count
number
required
Example:

100

data
object[]