Dograh ships official SDKs for Python and TypeScript that wrap the Dograh REST API and the workflow builder. Use them to create or edit agents, place outbound calls, and inspect runs from your own code.Documentation Index
Fetch the complete documentation index at: https://docs.dograh.com/llms.txt
Use this file to discover all available pages before exploring further.
- Python โ
dograh-sdkon PyPI - TypeScript โ
@dograh/sdkon npm
snake_case in Python, camelCase in TypeScript).
Install
Authenticate
Generate an API key at/api-keys (or http://localhost:3010/api-keys for self-hosted). See API Keys for details.
Both SDKs read the API key from the DOGRAH_API_KEY environment variable by default, and the base URL from DOGRAH_API_URL (defaults to http://localhost:8000). You can also pass them explicitly.
For self-hosted deployments, swap
baseUrl for your backend URL (e.g. http://localhost:8000).Quick tour
List the agents in your workspace:Next steps
- Build an agent โ assemble nodes and edges, save as a draft
- Place an outbound call โ trigger a call from an agent to a phone number
- MCP Server โ let Claude and other coding agents drive the SDK for you