Developer docs
Connect to your funds programmatically. Fundautic offers an easy to use hosted REST API as well as an MCP server for AI assistants.
Who can use it
Programmatic access is a Pro-plan feature. Any member of a Pro organization can create a key and use the read-only MCP server; the full REST API (including placing trades) is available only to owners and admins.
Get an API key
Sign in, open Organization → API & MCP access, and create an API key. The secret is shown once, so copy it then. Keys are personal: each key carries your identity and role, resolved live, so changing your role or plan takes effect immediately.
Revoke a key any time from the same screen.
Keep keys secret
A key startingfpk_ grants access to your organization's data and, for owners/admins, the ability to deploy capital. Treat it like a password; revoke and re-create if exposed.Authentication
Send your key as a bearer token on every request:
Authorization: Bearer fpk_your_key_here
Base URLs
REST API https://api.fundautic.com MCP server https://api.fundautic.com/mcp
Quick start
List the funds your key can access:
curl https://api.fundautic.com/api/funds \ -H "Authorization: Bearer fpk_your_key_here"
Everything is scoped to your organization automatically.
Where to next
The REST API reference lists every endpoint and the role each requires. The MCP guide covers connecting Claude or any MCP client. For an interactive, parameter-level schema, the live OpenAPI / Swagger UI is always current.