REST · MCP · OpenAPI 3.1
Your whole hosting account.
One API.
Connect Claude, ChatGPT or Cursor to your Inleed account — or call it yourself with curl. Your assistant can read, diagnose and fix, and always asks before anything costs money.
First call in under two minutes.
- Endpoints
- 401
- Tools your token can see
- 206
- SDKs to install
- 0
curl https://mcp.inleed.com/api/public/v1/products/domains/se
$se = Http::get('https://mcp.inleed.com/api/public/v1/products/domains/se')->json();
const se = await (await fetch('https://mcp.inleed.com/api/public/v1/products/domains/se')).json();
{
"tld": ".se",
"currency": "SEK",
"register": { "amount": 89, "currency": "SEK", "formatted": "89 kr" },
"renew": { "amount": 179, "currency": "SEK", "formatted": "179 kr" },
"transfer": null,
"transferFree": true,
"vatRate": 25,
"minYears": 1,
"maxYears": 10,
"requiresOrgNumberOrId": true,
"requiresLocalPresence": false,
"gracePeriodDays": 0,
"redemptionPeriodDays": 30,
"plans": [ … ]
}
The catalogue is public — that line works in your terminal right now, no token and no account. Everything else needs a token: mint one in the client area, then make your first call.
REST API
401 endpointsEvery read and every write in the control panel, as JSON over HTTP. Cursor pagination, RFC 7807 errors, camelCase throughout.
Read the referenceMCP server
206 toolsThe same account as tools an assistant can call. Filtered by your scopes, ownership-checked — and incapable of spending a krona without a human clicking.
Connect your AI401 endpoints across 25 groups, every page generated from openapi.json. Browse the reference.
Four files an agent can read before it calls anything
So it spends its context on your problem instead of on parsing a web page.
llms.txt
The rules an agent needs first: base URL, auth, the pagination stop condition, and what to ask before changing anything.
llms-full.txt
The same corpus in one file, for an agent that would rather fetch once than six times.
openapi.json
OpenAPI 3.1, generated from the code. Every endpoint page and code sample here is built from it.
console-index.json
Every operation’s method, path, scopes and request shape — the slim index when you only need to find a call.