DeltaX Client REST HTTP API
  1. rates
DeltaX Client REST HTTP API
  • Webhook Integration Documentation
  • trip
    • Get Trip by ID
      GET
    • Update Trip
      PUT
    • Create Incidence
      POST
    • List Trips
      GET
  • route
    • List Routes
      GET
    • Get Route by ID
      GET
    • List Warehouses
      GET
    • Get Warehouse by ID
      GET
    • List Window Availability
      GET
  • company
    • List Transport Companies
      GET
    • Get Transport Company by ID
      GET
  • fleet
    • List Transport Units
      GET
    • Get Transport Unit by ID
      GET
    • List Truckers
      GET
    • Get Trucker by ID
      GET
    • List Dollies
      GET
    • Get Dolly by ID
      GET
  • rates
    • List Rates
      GET
  • Schemas
    • Schemas
      • IncidenceCreate
      • TripUpdate
      • TripUpdateResponse
      • ClientTripUpdate
      • ClientIncidence
      • IncidenceCreateResponse
      • Trip
      • TripResponse
      • TripsListResponse
      • PaginationInfo
      • Route
      • RouteResponse
      • RoutesListResponse
      • Warehouse
      • WarehouseResponse
      • WarehousesListResponse
      • TransportCompany
      • TransportCompanyResponse
      • TransportCompaniesListResponse
      • TransportUnit
      • TransportUnitResponse
      • TransportUnitsListResponse
      • Trucker
      • TruckerResponse
      • TruckersListResponse
      • Dolly
      • DollyResponse
      • DolliesListResponse
      • WindowAvailability
      • WindowAvailabilityResponse
    • Response
      • Success
      • SuccessCreated
      • InternalServerError
      • BadRequest
      • NotFound
      • Unauthenticated
      • TripUpdateSuccess
      • IncidenceCreateSuccess
      • TripSuccess
      • TripsListSuccess
      • RouteSuccess
      • RoutesListSuccess
      • WarehouseSuccess
      • WarehousesListSuccess
      • TransportCompanySuccess
      • TransportCompaniesListSuccess
      • TransportUnitSuccess
      • TransportUnitsListSuccess
      • TruckerSuccess
      • TruckersListSuccess
      • DollySuccess
      • DolliesListSuccess
      • WindowAvailabilitySuccess
      • Unauthorized
  1. rates

List Rates

GET
/rates
Retrieve available rates with pagination support

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200Success DOMESTIC
application/json
Body

🟢200Success MODERN
🟢200Success CIRCUITOS
🟢200Success CIRCUITO CE01
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fmsapi.deltax.la/clients/rates?page=1&size=20&type=domestic&routeCode=004300&originCode=10089205B&originI2Code=16010&destinationCode=PC05&destinationI2Code=1000003000&transportCompanyCode=10138996&expeditionCode=O4' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - DOMESTIC
{
    "message": "Rates retrieved successfully",
    "data": {
        "type": "domestic",
        "pagination": {
            "page": 1,
            "size": 1,
            "totalRates": 63835,
            "totalPages": 31918,
            "hasNextPage": true,
            "hasPreviousPage": false
        },
        "rates": [
            {
                "_id": "67c9e9f37cbfc8618996d7db",
                "originValidation": "clasificalo",
                "grayValidation": "Excluir",
                "operationType": "Cerveza",
                "rateCode": "300338XC10094198",
                "routeCode": "300338",
                "originI2Code": "1000003000",
                "originCode": "PC05",
                "originName": "CCT",
                "originZone": "Tuxtepec, Oax.",
                "destinationI2Code": "2280202018",
                "destinationCode": "FV11",
                "destinationName": "SAG Papantla",
                "destinationZone": "Papantla, Veracruz",
                "expeditionCode": "XC",
                "equipmentType": "Ded Full Pal Flex",
                "equipmentType2": "Full",
                "performance": "Redondo",
                "transportCompanyCode": "10094198",
                "transportCompanyName": "ZETA Transportes SA. De C.V",
                "variableSapRate": 4795.88,
                "ratePerUnit": 4795.88,
                "tat": "-",
                "rateType": "Dedicado 2024",
                "negotiationDate": "2024-02-15T06:00:00.000Z",
                "rateEffectiveDate": "2024-04-01T06:00:00.000Z",
                "rateExpirationDate": "2025-12-31T06:00:00.000Z",
                "rateStatus": "Inactiva",
                "userName": "Jonathan",
                "minRateGray": 4795.88,
                "minRate": 4795.88,
                "peClassification": "Verde",
                "bl": 32420.516885849378,
                "newClassification": "Azul",
                "lastUpdated": "2025-03-06T18:31:15.625Z",
                "expirationStatus": "active"
            }
        ]
    }
}
Modified at 2025-12-04 14:34:41
Previous
Get Dolly by ID
Next
IncidenceCreate
Built with