Skip to main content
1

Request an API key

API keys are provisioned by the Noonum team. To request one, contact support at [email protected].
2

Authenticate

Every request to the Noonum REST API and MCP server carries one header that holds your Noonum API key:
Authorization: Bearer YOUR_API_KEY
See Authentication for key details and token settings.
3

Make your first call

List the strategies (thematic baskets of holdings) available to your account. Replace YOUR_API_KEY with the key from step 1:
curl -X GET "https://api.noonum.ai/v1/strategies" \
  -H "Authorization: Bearer YOUR_API_KEY"
A 200 OK with a JSON body means you are authenticated. A 401 Unauthorized means the token is missing, invalid, or for an inactive account. Check the header and revisit Authentication.Next, head to the Guides to build your first strategy.
4

Explore the API Reference

Browse every endpoint in the API Reference, with request/response schemas and an interactive try-it console. It is generated from the OpenAPI spec.
5

Wire up an MCP client

To drive Noonum from Claude, Cursor, or another AI agent, point your MCP client at the Noonum MCP server (https://api.noonum.ai/v1/mcp) and authenticate with the same Bearer token. See the MCP overview to get connected.