Connect to AlpineDataWorks in minutes.
Pick REST, MCP, or keyless discovery. Every intelligence object ships with a score, drivers, confidence, source lineage, and a freshness contract.
Fastest path
Start with a key, then copy one call.
curl https://api.alpinedataworks.com/v1/intelligence/ADW-001 \
-H "Authorization: Bearer YOUR_API_KEY" Three clean ways in
Use the same catalog whether you are building an app, wiring an agent, or evaluating the payload shape first.
REST API + a free account
For apps, scripts, and dashboards.
/v1/intelligence/{id} Create a free account, generate an API key, and call any of the 155 intelligence objects over plain HTTPS. Every object ships a score, drivers, confidence, and a freshness contract.
- 1 Sign up — instant, no card. You start with 1,000 free credits.
- 2 Your API key is waiting in your hub — copy it (rotate anytime).
- 3 Send it as a Bearer token (see below) and call any object.
MCP server
For Claude, IDEs, and AI agents.
/mcp Point any MCP-compatible agent at our server and it discovers all 164 tools with zero setup — discovery is keyless. Add your API key when you are ready to pull billable data.
- 1 Add the MCP server URL to your agent.
- 2 Discovery (catalog, schemas) works with no key.
- 3 Drop in your API key to run billable pulls.
Try it keyless
For evaluating before you commit.
/catalog.json Browse the full catalog and pull sample payloads with no account. Discovery endpoints and the live playground are open so you can see the shape of the data first.
- 1 Open the catalog or the live playground.
- 2 Read /catalog.json, /openapi.json, /llms.txt.
- 3 Sign up when you want live, billable data.
Two ways to pay
Once you have an account, pick whichever fits your usage. You can switch anytime.
Pay-as-you-go credits
Buy a credit pack — or name your own amount from $25 — and spend whenever. Credits never expire. Best if your usage is bursty or you're just starting out.
- • $25 steps, no upper limit
- • 12 credits per $1 at $25–99; up to 15 per $1 at $500+
- • No subscription, no expiry
Monthly subscription
A plan for steady usage — higher rate limits, larger batch sizes, and bonus credits on every top-up. Best if you call the API regularly.
- • Gold — $199/mo · +30% credits on top-ups
- • Platinum — $499/mo · +50% credits on top-ups
- • Cancel anytime — no contracts
Quick reference
Authentication
Send your API key as a bearer token on every request.
Authorization: Bearer YOUR_API_KEY Call an intelligence object (REST)
Every object is available at /v1/intelligence/<id>.
curl https://api.alpinedataworks.com/v1/intelligence/ADW-001 \
-H "Authorization: Bearer YOUR_API_KEY" Connect an agent (MCP)
Add the server to your MCP client. Discovery is keyless; add your key for billable pulls.
{
"mcpServers": {
"alpinedataworks": {
"url": "https://api.alpinedataworks.com/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
} Discovery endpoints (no key)
-
https://alpinedataworks.com/catalog.jsonFull catalog -
https://api.alpinedataworks.com/openapi.jsonOpenAPI spec -
https://api.alpinedataworks.com/.well-known/mcp.jsonMCP manifest -
https://api.alpinedataworks.com/llms.txtLLM-readable index