D-ID · Schema

D-ID Agent

Schema for a D-ID interactive AI agent.

AI VideoDigital HumansTalking HeadAvatarGenerative AIVideo GenerationReal-Time StreamingText-to-VideoVideo TranslationVoice Cloning

Properties

Name Type Description
id string Unique agent identifier.
preview_description string Human-readable description of the agent.
presenter object Avatar presenter configuration.
llm object Language model configuration.
knowledge object Knowledge base configuration for RAG.
starter_message array Suggested conversation starters displayed to users.
greetings array Greeting messages; one is selected randomly per session.
provider string
client_key string Auto-generated scoped client key for SDK embedding.
embed boolean Whether the agent is enabled for SDK/website embedding.
metadata object Plan and billing metadata.
triggers object Event-based configurations (webhooks, tools).
user_data string Custom user metadata string.
View JSON Schema on GitHub

JSON Schema

d-id-agent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/d-id/main/json-schema/d-id-agent-schema.json",
  "title": "D-ID Agent",
  "description": "Schema for a D-ID interactive AI agent.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique agent identifier."
    },
    "preview_description": {
      "type": "string",
      "description": "Human-readable description of the agent."
    },
    "presenter": {
      "type": "object",
      "description": "Avatar presenter configuration.",
      "properties": {
        "type": {
          "type": "string",
          "enum": ["talk", "clip", "expressive"],
          "description": "Presenter type (talk = V2 photo, clip = V3 personal, expressive = V4)."
        },
        "source_url": {
          "type": "string",
          "format": "uri"
        },
        "presenter_id": {
          "type": "string"
        },
        "voice": {
          "type": "object",
          "properties": {
            "type": { "type": "string" },
            "voice_id": { "type": "string" }
          }
        }
      },
      "required": ["type"]
    },
    "llm": {
      "type": "object",
      "description": "Language model configuration.",
      "properties": {
        "provider": {
          "type": "string",
          "enum": ["openai", "google", "d-id", "custom", "external"]
        },
        "model": {
          "type": "string"
        },
        "instructions": {
          "type": "string",
          "description": "System prompt / persona instructions."
        },
        "template": {
          "type": "string"
        }
      }
    },
    "knowledge": {
      "type": "object",
      "description": "Knowledge base configuration for RAG.",
      "properties": {
        "id": {
          "type": "string"
        }
      }
    },
    "starter_message": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Suggested conversation starters displayed to users."
    },
    "greetings": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Greeting messages; one is selected randomly per session."
    },
    "provider": {
      "type": "string",
      "const": "d-id-agents"
    },
    "client_key": {
      "type": "string",
      "description": "Auto-generated scoped client key for SDK embedding."
    },
    "embed": {
      "type": "boolean",
      "description": "Whether the agent is enabled for SDK/website embedding."
    },
    "metadata": {
      "type": "object",
      "description": "Plan and billing metadata.",
      "properties": {
        "plan": { "type": "string" }
      }
    },
    "triggers": {
      "type": "object",
      "description": "Event-based configurations (webhooks, tools)."
    },
    "user_data": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1000,
      "description": "Custom user metadata string."
    }
  },
  "required": ["id", "presenter"],
  "additionalProperties": true
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/d-id-agent"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.