Skip to main content
POST
/
signup
Signup
curl --request POST \
  --url https://backend.overtenai.com/api/v1/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "org_name": "<string>",
  "existing_org_id": "<string>",
  "tier": "free",
  "key_name": "default"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Body

application/json

Create a workspace org + first API key in one shot.

The caller is authenticated via Firebase ID token. If they already belong to a workspace and want to enable API access on it, pass its existing_org_id instead of creating a new one.

org_name
string | null
Required string length: 2 - 120
existing_org_id
string | null
tier
enum<string>
default:free
Available options:
free,
pro,
enterprise
key_name
string
default:default
Maximum string length: 80

Response

Successful Response