Skip to main content
POST
/
api
/
v1
/
bot
/
org
/
{org_id}
/
project
/
{project_id}
/
createBot
API to create new bot based on project
curl --request POST \
  --url https://app.aptlystar.ai/api/v1/bot/org/{org_id}/project/{project_id}/createBot \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: */*' \
  --data '{
  "content": "<string>",
  "type": "text",
  "name": "<string>",
  "embedding": "<string>",
  "model": "<string>",
  "maxDepth": 123,
  "maxLinks": 123,
  "options": {},
  "team": "<string>",
  "getprompt": "<string>",
  "dataStore": [
    "<any>"
  ]
}'

Headers

Authorization
string
required

Path Parameters

org_id
string
required
project_id
string
required

Body

*/*
content
string
type
enum<string>
Available options:
text,
website,
crawl,
github,
youtube,
rest,
sitemap
name
string
embedding
string
model
string
maxDepth
number
options
object
team
string
getprompt
string
dataStore
any[]
I