dashboard
API keys
| Name | Prefix | Created | Status |
|---|
Quick start
Use your API key to authenticate requests:
curl -s https://api.zindex.ai/v1/scenes \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"schemaVersion":"0.1","scene":{"id":"test","units":"px","canvas":{"width":800,"height":600}},"elements":[]}' Or configure the MCP server for agent access:
{
"mcpServers": {
"zindex": {
"command": "npx",
"args": [
"@zindex/mcp"
],
"env": {
"ZINDEX_API_URL": "https://api.zindex.ai",
"ZINDEX_API_KEY": "YOUR_API_KEY"
}
}
}
}