Skip to main content

List Master Trades

GET/master-trades

Caller

This endpoint is available to any authenticated Open API key.

Summary

Master trades are Requidex's shared, canonical trade taxonomy for workers. Unlike company trades, which represent roles configured within an individual company, master trades give the same worker trade a consistent identity across companies and agencies.

Use this endpoint to discover the valid master trade IDs before creating or updating a worker. Pass the returned id values in the worker request's trades array. The response intentionally includes only each trade's ID and name.

Query Parameters

NameTypeRequiredDescription
querystringNoCase-insensitive name search
pageintegerNoPage number (default 1)
limitintegerNoRecords per page (default 50, max 200)
sortByenum(name)NoSort field
sortOrderenum(asc, desc)NoSort direction
fieldsstringNoComma-separated response fields or nested dot paths

Request Example

curl -X GET 'https://api.requidex.com/api/open/v1/master-trades?limit=200' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Accept: application/json'

Response Fields

FieldTypeDescription
successbooleanWhether the request succeeded
dataarray[object]Master trades for the requested page.
Show child attributes
  • id string - Master trade ID used in worker requests
  • name string - Canonical master trade name
metaobjectPagination metadata.
Show child attributes
  • page integer - Current page number
  • limit integer - Maximum records returned per page
  • total integer - Total matching records

Response Example (200)

{
"success": true,
"data": [
{
"id": "67bc36db80a1616ec3f47102",
"name": "Electrical & Power"
}
],
"meta": { "page": 1, "limit": 200, "total": 1 }
}