GET /api/v3/rate/{rateId}

Retrieves a single rate schedule by its unique identifier

GetRateV3 Permissions: VendorsAndRatesModule (View)
Use this endpoint to get full details of a known rate schedule, including summaries of all its versions. If only the rate code or name is known (not the ID), use GET /rate with a filter to find it first.

Request Headers

Header Value Required Description
ECI-ApiKey string Yes Your API key. See Authentication.
Content-Type application/json Yes All requests must specify JSON content type.

Path Parameters

Name Description Type Required
rateId Unique numeric identifier of the rate schedule (tariff ID) integer (int32) Required

Responses

200 OK The request succeeded and the response body contains the requested data.

Response Body Parameters

RateResponse
Property Description Type
commodity CommodityChild
CommodityChild properties
Property Description Type
commodityCode The commodity code Required (defined) string
commodityIcon Icon
Icon properties
Property Description Type
code The icon code Must be between 0 and 64 characters Required when Color is set string
color The icon color Must be between 0 and 32 characters Required when Code is set string
commodityId The commodity identifier Required (defined) integer (int32)
commodityInfo The commodity info Required (defined) string
name string
note string
rateId integer (int32)
vendor VendorChild
VendorChild properties
Property Description Type
vendorCode The vendor code string
vendorId The vendor identifier integer (int32)
vendorInfo The vendor info string
versions VersionResponse[]
VersionResponse properties
Property Description Type
beginDate string (date-time)
endDate string (date-time)
versionId integer (int32)
Example Response application/json
{  "commodity": {    "commodityCode": "string",    "commodityIcon": {      "code": "string",      "color": "string"
    },    "commodityId": 1,    "commodityInfo": "string"
  },  "name": "string",  "note": "string",  "rateId": 1,  "vendor": {    "vendorCode": "string",    "vendorId": 1,    "vendorInfo": "string"
  },  "versions": [
    {    "beginDate": "2026-06-29",    "endDate": "2026-06-29",    "versionId": 1
  }
  ]
}
404 Not Found The requested resource was not found. Verify the ID or path is correct.