Skip to main content
GET
/
agent
/
tool
/
builtins
List Built-In Agent Tools
curl --request GET \
  --url https://api.getoutbox.ai/agent/tool/builtins/ \
  --header 'Authorization: <api-key>'
[
  {
    "key": "send_sms",
    "name": "<string>",
    "description": "<string>",
    "schema": [
      {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "type": "<string>",
        "required": true
      }
    ]
  }
]

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Company API Key

Response

Built-in tools retrieved successfully

key
enum<string>

Built-in tool key used as builtin_key when attaching the tool

Available options:
send_sms,
send_email,
create_opportunity,
update_opportunity,
update_contact,
add_tag,
remove_tag,
add_to_workflow,
remove_from_workflow,
book_ai_callback
name
string

Human-readable tool name

description
string

What the built-in tool does

schema
object[]

Resolved input schema for this built-in tool