Skip to main content
POST
/
service
/
v1
/
apps
Create App
import requests

url = "https://api.parallel.ai/account/service/v1/apps"

payload = { "app_name": "<string>" }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "app_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.parallel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send Authorization: Bearer <access_token>. This must be an account API access token minted via Parallel's OAuth device flow, not a standard API key. See the account API docs.

Body

application/json

Model for creating app request.

app_name
string
required

App name

Response

Successful Response

Model for creating app response.

app_id
string
required

App ID