Skip to main content
Asisso ships official SDKs for Python and TypeScript that wrap the Asisso REST API and the workflow builder. Use them to create or edit agents, place outbound calls, and inspect runs from your own code. Both packages are generated from the same backend OpenAPI spec, so the method surface is equivalent — only the naming convention differs (snake_case in Python, camelCase in TypeScript).

Install

Authenticate

Generate an API key at app.asisso.com/api-keys. See API Keys for details. Both SDKs read the API key from the ASISSO_API_KEY environment variable by default, and the base URL from ASISSO_API_URL (defaults to https://app.asisso.com). You can also pass them explicitly.

Quick tour

List the agents in your workspace:

Next steps