Query SAT Product Code
For shipments from Mexico, the SAT requires us to send a product type code when using the Shipping Label Generation service.
Environments
The DrEnvío API supports two environments: Production and Sandbox.
Production Environment: The production environment is where real shipments are processed. To use the production API, send your requests to the following URL:
https://prod.api-drenvio.com/v2/sat/products
Sandbox Environment: The sandbox environment is used for testing purposes. It provides simulated data to help you develop and test your integration before moving to production. To use the sandbox API, send your requests to the following URL:
https://sandbox.api-drenvio.com/v2/sat/products
Note: For the testing API, it is not necessary to use the service. You can use the generic product code 31181701.
Params
Field | Description | Type | Required |
---|---|---|---|
text | Product keyword to be sent | string | true |
API request
To retrieve the SAT code for a product, use the following GET request:
GET https://prod.api-drenvio.com/v2/sat/products?text=documentos
API response
{ "items": 8, "products": [ { "_id": "61c5417c01b118beec6927fa", "PRODUCT_ID": "44122016", "DESCRIPTION": "SUJETADOR DE DOCUMENTOS", "SIMILAR": "Tabla sujetadora de documentos", "score": 0.6666666666666666 }, { "_id": "61c5417901b118beec690cf1", "PRODUCT_ID": "55121800", "DESCRIPTION": "DOCUMENTOS DE IDENTIFICACIÓN", "SIMILAR": "NULL", "score": 0.6666666666666666 }, { "_id": "61c5417c01b118beec692a54", "PRODUCT_ID": "45121517", "DESCRIPTION": "CÁMARAS PARA DOCUMENTOS", "SIMILAR": "NULL", "score": 0.6666666666666666 }, { "_id": "61c5417c01b118beec6925c7", "PRODUCT_ID": "44101730", "DESCRIPTION": "CLASIFICADOR AUTOMÁTICO DE DOCUMENTOS", "SIMILAR": "NULL", "score": 0.625 }, { "_id": "61c5417b01b118beec69199e", "PRODUCT_ID": "46151609", "DESCRIPTION": "DISCRIMINADOR DE DOCUMENTOS DE IDENTIFICACIÓN", "SIMILAR": "Discriminador de tarjeta de identificación", "score": 0.6 }, { "_id": "61c5417a01b118beec690eee", "PRODUCT_ID": "44111519", "DESCRIPTION": "REPISAS DE DISTRIBUCIÓN DE DOCUMENTOS", "SIMILAR": "NULL", "score": 0.6 }, { "PRODUCT_ID": "31181701", "DESCRIPTION": "GENÉRICO MENOR A 31.5KG", "SIMILAR": "" }, { "PRODUCT_ID": "01010101", "DESCRIPTION": "GENÉRICO MAYOR A 31.5KG", "SIMILAR": "" } ]}