/
/Pipecat Cloud
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 1mo ago · Updated 1mo ago
  • getList all agents
  • postCreate a new agent
  • getGet agent details
  • postUpdate an agent deployment
  • deleteDelete an agent
  • getGet agent logs
  • getGet session details
  • deleteStop an agent session
  • getGet agent sessions
  • getList builds
  • postCreate a build
  • getGet build status
  • getGet build logs
  • postGet upload URL for build context
  • getGet organization properties
  • patchUpdate organization properties
  • getList available regions
  • getGet a specific secret set
  • putCreate or update a secret set
  • deleteDelete an entire secret set
  • deleteDelete a specific secret from a set
  • getList all secret sets
  • getSend GET request to session
  • postStart a service instance

List available regions

Retrieve a list of all regions available for deploying agents and storing secrets. This endpoint can be accessed using either Clerk authentication or a Private API key.

get/regions

Response

List of available regions

Example response

{
  "regions": [
    {
      "code": "us-west",
      "display_name": "US West (Oregon)"
    }
  ]
}

Changes