Private v1ApiPrivateV1LookupInvestors
Discoverable filter fields, enums, sort keys
Authorization
bearerAuth AuthorizationBearer <token>
Send your API key as a bearer token in the Authorization header:
Authorization: Bearer mpl_live_.... A single key grants access to
all endpoints in this API. Contact your account manager to obtain or
rotate a key.
In: header
Response Body
application/json
curl -X GET "https://example.com/api/private/v1/lookup/investors"{ "data": { "filters": [ { "field": "id", "type": "array_uuid", "operators": [ "in" ] }, { "field": "name", "type": "string", "operators": [ "ilike", "eq" ] }, { "field": "country", "type": "array_string", "operators": [ "in" ], "description": "ISO-3 country codes." }, { "field": "updated_at", "type": "datetime", "operators": [ "gte" ], "description": "Change-feed checkpoint." }, { "field": "include_deleted", "type": "boolean", "operators": [ "eq" ], "description": "Default false. Set true on change-feed pulls." } ], "sort_fields": [ "name", "updated_at" ], "sub_resources": [ "/investors/{id}/investments", "/investors/{id}/co_investors", "/investors/{id}/portfolio" ] }}