Este repo ya no recibe mantenimiento ni se están desarrollando nuevas funcionalidades. Ya ni siquiera uso PHP personal o profesionalmente. Si estás interesado en darle mantenimiento y eventualmente ser el dueño/administrador por favor crea un nuevo Issue.
API que proporciona información de envios (rastreo y cotizacion) para Estafeta. No es oficial ni tiene relacion con la empresa del mismo nombre.
Actualmente proporciona la siguiente info (sólo para envíos nacionales):
- Número de guía
- Código de rastreo
- Tipo de servicio
- Fecha programada de entrega
- Lugar de origen (nombre y coordenadas usando la API de geolocalización Google Maps)
- Fecha de recolección
- Hora de recolección
- Lugar de destino (nombre, código postal y coordenadas usando la API de geolocalización Google Maps)
- Estatus del envío
- Fecha de entrega
- Hora de entrega
- Firma y comprobante de recibido
- Historial de movimientos
Para cotización muestra la info de paquetes y sobres de los siguientes productos:
- 11:30
- Día siguiente
- Dos días
- Terrestre
$ git clone https://github.com/mexicapis/estafeta-api
$ cd estafeta-api
Las dependencias se descargan con Composer (Restler, Dom Hunter y Google Maps Geocoder)
$ composer install
Luego cURL para PHP:
$ sudo apt-get install php5-curl
Si tienes PHP >= 5.4 con el built-in server:
$ php -S localhost:8000
{
"error":2,
"mensaje_error":"No hay información disponible"
}
http://localhost:8000/index.php/estafeta/rastreo?numero=3039999999061710015581
http://localhost:8000/index.php/estafeta/rastreo?numero=1749215347
{
"numero_guia": "6659999999061710015592",
"codigo_rastreo": "1749215347",
"origen": {
"nombre": "Chetumal",
"latitud": 18.5001889,
"longitud": -88.296146
},
"destino": {
"nombre": "Cuernavaca",
"latitud": 18.9186111,
"longitud": -99.2341667,
"cp_destino": "62230"
},
"servicio": "Entrega garantizada al tercer día hábil",
"estatus": "Entregado",
"fecha_programada": "20/02/2014",
"fecha_entrega": "24/02/2014 04:41 PM",
"peso": "22.6",
"peso_volumetrico": "64.8",
"recibio": "SDR:JERONIMO DE LA VEGA",
"dimensiones": {
"alto": "120",
"largo": "52",
"ancho": "52"
},
"movimientos": [
{
"descripcion": "Cuernavaca En ruta local sin éxito en la entrega",
"fecha": "24/02/2014 10:28 AM",
"id": 8
},
{
"descripcion": "Cuernavaca En proceso de entrega CVA Cuernavaca",
"fecha": "24/02/2014 09:52 AM",
"id": 1
},
{
"descripcion": "Cuernavaca En proceso de entrega CVA Cuernavaca",
"fecha": "24/02/2014 09:24 AM",
"id": 1
},
{
"descripcion": "Cuernavaca Llegada a centro de distribución CVA Cuernavaca",
"fecha": "22/02/2014 07:23 AM",
"id": 2
},
{
"descripcion": "MEXICO D.F. En ruta foránea hacia CVA-Cuernavaca",
"fecha": "21/02/2014 08:41 PM",
"id": 3
},
{
"descripcion": "MEXICO D.F. Movimiento en centro de distribución",
"fecha": "21/02/2014 05:28 PM",
"id": 6
},
{
"descripcion": "MEXICO D.F. Llegada a centro de distribución",
"fecha": "21/02/2014 05:24 PM",
"id": 2
},
{
"descripcion": "Centro de Int. TIN En ruta foránea hacia CVA-Cuernavaca",
"fecha": "20/02/2014 11:46 PM",
"id": 3
},
{
"descripcion": "Mérida En ruta foránea hacia CVA-Cuernavaca",
"fecha": "18/02/2014 06:44 AM",
"id": 3
},
{
"descripcion": "Mérida Llegada a centro de distribución MID Mérida",
"fecha": "18/02/2014 06:38 AM",
"id": 2
},
{
"descripcion": "Chetumal En ruta foránea hacia CVA-Cuernavaca",
"fecha": "17/02/2014 06:25 PM",
"id": 3
},
{
"descripcion": "Recolección en oficina por ruta local",
"fecha": "17/02/2014 06:08 PM",
"id": 4
},
{
"descripcion": "Envio recibido en oficina Av Cinco de Mayo 25 Centro Chetumal",
"fecha": "17/02/2014 01:37 PM",
"id": 5
}
],
"firma_recibido": "http://rastreo3.estafeta.com/RastreoWebInternet/firmaServlet?guia=6659999999061710015592&idioma=es",
"comprobante_entrega": "http://rastreo3.estafeta.com/RastreoWebInternet/consultaEnvio.do?dispatch=doComprobanteEntrega&guiaEst=6659999999061710015592"
}
{
"costos": [
{
"producto": "11:30",
"peso_kg": 1,
"tarifa_guia": 200.58,
"tarifa_combustible": 10.63,
"cargos_extra": 0,
"sobrepeso_costo": 0,
"sobrepeso_combustible": 0,
"costo_total": 211.21
},
{
"producto": "Dia Sig.",
"peso_kg": 1,
"tarifa_guia": 166.19,
"tarifa_combustible": 8.81,
"cargos_extra": 0,
"sobrepeso_costo": 0,
"sobrepeso_combustible": 0,
"costo_total": 175
},
{
"producto": "2 Dias",
"peso_kg": 1,
"tarifa_guia": 140.78,
"tarifa_combustible": 10.94,
"cargos_extra": 0,
"sobrepeso_costo": 0,
"sobrepeso_combustible": 0,
"costo_total": 151.72
},
{
"producto": "Terrestre",
"peso_kg": 1,
"tarifa_guia": 163.18,
"tarifa_combustible": 12.68,
"cargos_extra": 0,
"sobrepeso_costo": 0,
"sobrepeso_combustible": 0,
"costo_total": 175.86
}
]
}
Parametro | Tipo | Descripcion |
---|---|---|
numero_guia | ||
codigo_rastreo | ||
servicio | ||
fecha_programada | ||
origen | nombre, latitud, longitud | |
fecha_recoleccion | ||
destino | nombre, latitud, longitud, codigo_postal | |
estatus | ||
fecha_entrega | ||
tipo_envio | ||
recibio | ||
firma_recibido | ||
dimensiones | ancho, alto, largo | |
peso | ||
peso_volumetrico | ||
movimientos |
Parametro | Tipo | Descripcion |
---|---|---|
costos |
- Versión línea de comandos
- Buscar zonas
The MIT License (MIT)
Copyright (c) 2012 Ivan Rodriguez
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.