Skip to main content
GET
/
api
/
taxonomy
/
investor-types
List investor types
curl --request GET \
  --url https://api.example.com/api/taxonomy/investor-types \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "code": "<string>"
    }
  ],
  "page": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

q
string

Keyword search (min 2 chars). Fuzzy matches name and aliases.

Minimum string length: 2
Example:

"artificial intelligence"

type
string
Example:

"industry"

limit
string

Number of results to return (1-1000, default 100)

Example:

"100"

offset
string
Example:

"0"

Response

List of investor types

data
object[]
required
page
object
required