# Get Rate Requests This endpoint is used to retrieve a list of rate requests. You can filter the results based on the Rate Request ID, Intermodal Region ID, and Destination City ID. Endpoint: GET /rateRequests Version: 1.0.0 Security: bearerAuth ## Query parameters: - `id` (integer) The id of the Rate Request - `intermodal_region_id` (integer) The id of Intermodal Region - `to_city_id` (integer) The id of To City - `page` (integer) Current page of the list, default: 1 - `per_page` (integer) Current per page of the list, default: 20 ## Response 200 fields (application/json): - `data` (array) - `data.id` (integer) Unique identifier for the entry Example: 1392 - `data.to_zipcode` (string,null) Destination ZIP code Example: "90001" - `data.status` (string) The status of the rate request. Possible values: - created: The rate request is created. - completed: The rate request is completed. - rejected: The rate request is rejected. Enum: "created", "completed", "rejected" - `data.rejected_reason` (string,null) Reason for rejection - `data.created_at` (string) Date and time when the entry was created Example: "2022-12-01 13:58:25" - `data.memo` (string,null) Additional notes or comments - `data.to_city_id` (integer) ID of the destination city Example: 115 - `data.intermodal_region_id` (integer) ID of the intermodal region Example: 94 - `data.intermodal_region` (string) Name of the intermodal region Example: "Los Angeles/Long Beach - CA" - `data.to_city` (string) Destination city Example: "Ontario, CA, USA" - `links` (object) - `links.first` (string) Example: "https://api.drayeasy.com/api/v2/rateRequests?page=1" - `links.last` (string) Example: "https://api.drayeasy.com/api/v2/rateRequests?page=1" - `links.prev` (string,null) - `links.next` (string,null) - `meta` (object) - `meta.current_page` (integer) Example: 1 - `meta.from` (integer) Example: 1 - `meta.last_page` (integer) Example: 1 - `meta.path` (string) Example: "https://api.drayeasy.com/api/v2/rateRequests" - `meta.per_page` (string) Example: "20" - `meta.to` (integer) Example: 1 - `meta.total` (integer) Example: 2 ## Response 401 fields (application/json): - `message` (string) Example: "Unauthenticated"