Getting Started
Quickstart Guide
2. Make your first request
Try the health endpoint (no auth needed) or list your SKUs with your API key:
Check service health (no auth):
curl https://telden.eu/api/healthList your workspace SKUs with your API key:
curl https://telden.eu/api/skus \
-H "Authorization: Bearer YOUR_API_KEY"3. Configure an AI agent
Connect Telden as an MCP server for Claude Desktop, Cursor, or any MCP-compatible agent:
MCP server config (claude_desktop_config.json / .cursor/mcp.json)
{
"mcpServers": {
"telden": {
"url": "https://telden.eu/api/mcp",
"headers": {
"Authorization": "Bearer ${TELDEN_ACCESS_TOKEN}"
}
}
}
}Your API key is workspace-scoped. Use the Bearer token in the Authorization header for all authenticated endpoints. Your workspace ID is shown at the top of the Settings page under Workspace.
Product Resources
Available Endpoints
GET
/api/healthHealth checkGET
/api/skusList all SKUsPOST
/api/skusCreate a SKUGET
/api/skus/{id}Get a SKUDELETE
/api/skus/{id}Delete a SKUGET
/api/skus/{id}/documentsList documents linked to a SKUGET
/api/skus/{id}/exportExport enriched SKU data (CSV or JSON)POST
/api/importUpload CSV/TSV/spreadsheet importGET
/api/importsList import batchesGET
/api/imports/{batchId}Get one import batch statusPOST
/api/mcpMCP-style agent read modelFull spec at /docs/api