# List Rate Card Rates Gets a paginated list of rates for all roles on a specific rate card. Endpoint: GET /v1/rate-cards/{rate_card_id}/rates Version: v1 Security: ApiKey ## Query parameters: - `page` (integer) The specific page of results requested. - `page_size` (integer) The number of results in each page. ## Path parameters: - `rate_card_id` (string, required) ## Response 200 fields (application/json): - `count` (integer) The number of results in the current page. - `total` (integer) The total number of results that fulfill the request. - `page` (integer) The current page of results being returned. - `total_pages` (integer) The total number of available pages that fulfill the request. - `page_size` (integer) The number of results in each page returned. - `results` (array, required) The array of result objects for the current page. - `results.id` (string) The unique identifier for the rate card role rate in Parallax. - `results.role_id` (string) The unique identifier of the role that this rate applies to. This links to the Parallax Role this rate applies to. - `results.rate` (object) The bill rate for this role on the rate card. - `results.rate.currency_code` (string) The currency code of the monetary object. - `results.rate.amount` (number) The amount of the monetary object. ## Response 400 fields (application/json): - `type` (string) RFC reference for the error type - `title` (string) Human-readable summary of the error - `status` (integer) HTTP status code - `errors` (array) Detailed error messages for each validation failure - `trace_id` (string) Trace identifier for debugging