Related

Records linked to this one

GET
/v1/agents/{id}/related

Return the ids of records of another type that are linked to this record. Links resolve by identifier, strongest identifier first, and equally-trusted identifiers are combined — a company's linked loans cover every role it holds on a loan, not just the first one found. The response reports which strength was used: primary is the canonical identifier for that pair, secondary is a real but weaker alternate used only when the record carries nothing better. This is a lightweight index: it returns ids and a count, not full records. For filtering, sorting, pagination and full detail, use the named endpoint for the pair (for example the originator loans endpoint) and fetch records by id.

Authorization

x-api-key<token>

In: header

Path Parameters

id*string

Agent id

Query Parameters

to*string

Type of record to link to

Value in"loans" | "sales"
limit?integer

Maximum ids to return (default 25, max 200)

Range1 <= value <= 200

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/agents/string/related?to=loans"
{
  "data": [
    {
      "id": "string"
    }
  ],
  "from": "string",
  "linkQuality": "primary",
  "to": "string",
  "total": 0
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string",
  "limit": 0,
  "size": 0
}