Localizar estaciones y parkings para camiones
Busqueda objetivo: "estaciones de servicio camiones api", "parking camiones ruta api"
Estaciones cercanas (TRANSCEND)
bash
curl -X GET "https://back.transcend.cargoffer.com/stations/nearby?lat=40.4168&lon=-3.7038&radius=50" \
-H "Authorization: Bearer <token>"Buscar por ubicacion
bash
curl -X GET "https://back.transcend.cargoffer.com/stations/search?q=Madrid&type=service_station" \
-H "Authorization: Bearer <token>"Detalle de estacion
bash
curl -X GET "https://back.transcend.cargoffer.com/stations/{id}" \
-H "Authorization: Bearer <token>"Puntos de interes (POI)
bash
curl -X GET "https://back.transcend.cargoffer.com/poi/search?lat=40.4168&lon=-3.7038&category=parking&radius=20" \
-H "Authorization: Bearer <token>"