Skip to main content
GET
/
api
/
investors
/
dimensions
List investor filter dimensions or look up a single dimension
curl --request GET \
  --url https://api.example.com/api/investors/dimensions \
  --header 'Authorization: Bearer <token>'
{
  "data": {},
  "page": {
    "timing_ms": 123,
    "limit": 123,
    "offset": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

key
string

Single investor dimension key to fetch (lookup mode).

Example:

"portfolio_location_country"

q
string

Optional case-insensitive search term for lookup mode.

Example:

"uni"

ids
string

Pipe-separated IDs to always include in the response (e.g. selected filter values). These are fetched separately and merged with the paginated results.

Pattern: ^\d+(\|\d+)*$
Example:

"12643|218891"

limit
string

Number of results to return (1-500, default 50)

Example:

"50"

offset
string
Example:

"0"

Response

Dimension values grouped by key

data
object
required
page
object
required