Listar envios
curl --request GET \
--url https://apiv3.usecorvex.com.br/api/v1/tracking \
--header 'Authorization: Bearer <token>' \
--header 'X-Store-Id: <x-store-id>'const options = {
method: 'GET',
headers: {'X-Store-Id': '<x-store-id>', Authorization: 'Bearer <token>'}
};
fetch('https://apiv3.usecorvex.com.br/api/v1/tracking', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://apiv3.usecorvex.com.br/api/v1/tracking"
headers = {
"X-Store-Id": "<x-store-id>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": {
"shipments": [
{
"id": "66666666-6666-4666-8666-666666666666",
"orderNumber": "CVX-10041",
"customerName": "Ana Silva",
"customerEmail": "ana@example.com",
"orderStatus": "PAID",
"createdAt": "2026-09-24T14:00:00.000Z",
"trackingCode": "AB123456789BR",
"trackingUrl": "https://rastreio.example.com/AB123456789BR",
"trackingStatus": "in_transit",
"trackingStatusLabel": "Em trânsito",
"trackingStatusUpdatedAt": "2026-09-24T14:00:00.000Z",
"carrier": "correios",
"shippingName": "PAC",
"shippingTurnaround": "5 a 8 dias úteis",
"currentStep": 2,
"hasDelay": false
}
],
"summary": {
"all": 12,
"pending": 3,
"in_transit": 6,
"delivered": 2,
"issues": 1
},
"pagination": {
"page": 1,
"limit": 20,
"total": 1,
"totalPages": 1
}
}
}{
"success": false,
"error": {
"message": "X-Store-Id deve ser um UUID válido",
"code": "VALIDATION_ERROR"
},
"meta": {
"timestamp": "2026-09-24T14:00:00.000Z",
"status": 400
}
}{
"success": false,
"error": {
"message": "Esta rota exige uma API Key. Use Authorization: Bearer cvx_live_...",
"code": "AUTH_API_KEY_REQUIRED"
},
"meta": {
"timestamp": "2026-09-24T14:00:00.000Z",
"status": 401
}
}{
"success": false,
"error": {
"message": "Sua API Key não tem o escopo necessário para esta operação.",
"code": "AUTH_SCOPE_DENIED"
},
"meta": {
"timestamp": "2026-09-24T14:00:00.000Z",
"status": 403
}
}{
"success": false,
"message": "Muitas requisições. Tente novamente em instantes.",
"error": "RATE_LIMITED",
"retryAfter": 12
}Rastreio
Listar envios
GET
/
api
/
v1
/
tracking
Listar envios
curl --request GET \
--url https://apiv3.usecorvex.com.br/api/v1/tracking \
--header 'Authorization: Bearer <token>' \
--header 'X-Store-Id: <x-store-id>'const options = {
method: 'GET',
headers: {'X-Store-Id': '<x-store-id>', Authorization: 'Bearer <token>'}
};
fetch('https://apiv3.usecorvex.com.br/api/v1/tracking', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://apiv3.usecorvex.com.br/api/v1/tracking"
headers = {
"X-Store-Id": "<x-store-id>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": {
"shipments": [
{
"id": "66666666-6666-4666-8666-666666666666",
"orderNumber": "CVX-10041",
"customerName": "Ana Silva",
"customerEmail": "ana@example.com",
"orderStatus": "PAID",
"createdAt": "2026-09-24T14:00:00.000Z",
"trackingCode": "AB123456789BR",
"trackingUrl": "https://rastreio.example.com/AB123456789BR",
"trackingStatus": "in_transit",
"trackingStatusLabel": "Em trânsito",
"trackingStatusUpdatedAt": "2026-09-24T14:00:00.000Z",
"carrier": "correios",
"shippingName": "PAC",
"shippingTurnaround": "5 a 8 dias úteis",
"currentStep": 2,
"hasDelay": false
}
],
"summary": {
"all": 12,
"pending": 3,
"in_transit": 6,
"delivered": 2,
"issues": 1
},
"pagination": {
"page": 1,
"limit": 20,
"total": 1,
"totalPages": 1
}
}
}{
"success": false,
"error": {
"message": "X-Store-Id deve ser um UUID válido",
"code": "VALIDATION_ERROR"
},
"meta": {
"timestamp": "2026-09-24T14:00:00.000Z",
"status": 400
}
}{
"success": false,
"error": {
"message": "Esta rota exige uma API Key. Use Authorization: Bearer cvx_live_...",
"code": "AUTH_API_KEY_REQUIRED"
},
"meta": {
"timestamp": "2026-09-24T14:00:00.000Z",
"status": 401
}
}{
"success": false,
"error": {
"message": "Sua API Key não tem o escopo necessário para esta operação.",
"code": "AUTH_SCOPE_DENIED"
},
"meta": {
"timestamp": "2026-09-24T14:00:00.000Z",
"status": 403
}
}{
"success": false,
"message": "Muitas requisições. Tente novamente em instantes.",
"error": "RATE_LIMITED",
"retryAfter": 12
}Authorizations
API Key no formato cvx_live_..., criada no painel Corvex. Não use JWT de sessão nem x-api-key.
Headers
UUID da loja. A chave precisa ter esta loja autorizada.
Query Parameters
Required range:
x <= 100Available options:
all, pending, in_transit, delivered, issues Response
Lista de envios.