{ "opencollection": "1.0.0", "info": { "name": "D-ID Agents API", "version": "1.0.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Agents", "type": "folder" }, "items": [ { "info": { "name": "List agents", "type": "http" }, "http": { "method": "GET", "url": "https://api.d-id.com/agents" }, "docs": "Retrieve all agents belonging to the authenticated user." }, { "info": { "name": "Create an agent", "type": "http" }, "http": { "method": "POST", "url": "https://api.d-id.com/agents", "headers": [ { "name": "x-api-key-external", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new interactive AI agent combining a digital avatar presenter, an LLM backend, and an optional knowledge base.\n" }, { "info": { "name": "Get an agent", "type": "http" }, "http": { "method": "GET", "url": "https://api.d-id.com/agents/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique resource identifier." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve details of a specific agent by ID." }, { "info": { "name": "Update an agent", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.d-id.com/agents/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique resource identifier." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update configuration for an existing agent." }, { "info": { "name": "Delete an agent", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.d-id.com/agents/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique resource identifier." } ] }, "docs": "Permanently delete an agent." } ] } ], "bundled": true }