Query Marketplace

Through the management console, you can facilitate the distribution of fund instruments on your platform. Simply activate the 'Add to Offerings' toggle.

instrument_query_url = f"{base_url}/instruments?asset_classes=private_equity&instrument_type=fund_of_funds&expand=parent_instruments,child_instruments"
headers = {
    "accept": "application/json",
    "caliber-api-key": caliber_api_key
}

instrument_response = requests.get(instrument_query_url, headers=headers)

instruments = instrument_response.json()['results']
instrument_ids = [instrument['id'] for instrument in instruments]
selected_instrument_id = instrument_ids[0]

print(f"Poolit Horizon Fund Id: {selected_instrument_id}")
Poolit Horizon Fund Id: 2a56f665-42ae-40bb-98de-2d0ba44c7338

What’s Next