1. Create an API Key
Create an account at Monid dashboard, then generate an API key at the API key management page. Store it as a server-side secret.Every Monid request should include an
x-workspace-id header. List available workspaces with GET /v1/auth/workspaces.2. Pick a Pattern
Pattern A: Full Discover / Inspect / Run
Best when your product (or internal agent) needs to pick tools dynamically.POST /v1/discover
Search for endpoints in natural language.
POST /v1/inspect
Get the input schema, output shape, and price.
POST /v1/run
Execute an endpoint and get results.
Pattern B: Curated Endpoints Only
Best when you want a simple, fixed interface with predictable pricing. Pre-select the endpoints you care about, wrap them behind your own function or API, and callrun directly.
Browse available endpoints at monid.ai/tools to find the ones you want to expose.
3. Billing
All usage bills to your single Monid wallet with one invoice and no per-user setup. Charge your users however you like.Next Steps
- API Reference — full endpoint documentation
- How It Works — discover / inspect / run overview