Create Widget
curl --request POST \
--url https://api.bland.ai/v1/widget \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"pathway_id": "<string>",
"agent_prompt": "<string>",
"allowed_domains": [
"<string>"
],
"messages_per_minute": 123,
"config": "<any>",
"agent_id": "<string>",
"webhook_url": "<string>"
}
'import requests
url = "https://api.bland.ai/v1/widget"
payload = {
"pathway_id": "<string>",
"agent_prompt": "<string>",
"allowed_domains": ["<string>"],
"messages_per_minute": 123,
"config": "<any>",
"agent_id": "<string>",
"webhook_url": "<string>"
}
headers = {
"authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {authorization: '<authorization>', 'Content-Type': 'application/json'},
body: JSON.stringify({
pathway_id: '<string>',
agent_prompt: '<string>',
allowed_domains: ['<string>'],
messages_per_minute: 123,
config: '<any>',
agent_id: '<string>',
webhook_url: '<string>'
})
};
fetch('https://api.bland.ai/v1/widget', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bland.ai/v1/widget",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pathway_id' => '<string>',
'agent_prompt' => '<string>',
'allowed_domains' => [
'<string>'
],
'messages_per_minute' => 123,
'config' => '<any>',
'agent_id' => '<string>',
'webhook_url' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bland.ai/v1/widget"
payload := strings.NewReader("{\n \"pathway_id\": \"<string>\",\n \"agent_prompt\": \"<string>\",\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"messages_per_minute\": 123,\n \"config\": \"<any>\",\n \"agent_id\": \"<string>\",\n \"webhook_url\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("authorization", "<authorization>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bland.ai/v1/widget")
.header("authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"pathway_id\": \"<string>\",\n \"agent_prompt\": \"<string>\",\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"messages_per_minute\": 123,\n \"config\": \"<any>\",\n \"agent_id\": \"<string>\",\n \"webhook_url\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bland.ai/v1/widget")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["authorization"] = '<authorization>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pathway_id\": \"<string>\",\n \"agent_prompt\": \"<string>\",\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"messages_per_minute\": 123,\n \"config\": \"<any>\",\n \"agent_id\": \"<string>\",\n \"webhook_url\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": 200,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"pathway_id": "a0f0d4ed-f5f5-4f16-b3f9-22166594d7a7",
"agent_id": null,
"allowed_domains": ["example.com", "subdomain.example.com"],
"messages_per_minute": 10,
"config": {
"theme": "light",
"position": "bottom-right",
"timeoutSeconds": 3600
},
"webhook_url": "https://example.com/webhook",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"errors": null
}
Widgets
Create Widget
Creates a new widget.
POST
/
v1
/
widget
Create Widget
curl --request POST \
--url https://api.bland.ai/v1/widget \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"pathway_id": "<string>",
"agent_prompt": "<string>",
"allowed_domains": [
"<string>"
],
"messages_per_minute": 123,
"config": "<any>",
"agent_id": "<string>",
"webhook_url": "<string>"
}
'import requests
url = "https://api.bland.ai/v1/widget"
payload = {
"pathway_id": "<string>",
"agent_prompt": "<string>",
"allowed_domains": ["<string>"],
"messages_per_minute": 123,
"config": "<any>",
"agent_id": "<string>",
"webhook_url": "<string>"
}
headers = {
"authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {authorization: '<authorization>', 'Content-Type': 'application/json'},
body: JSON.stringify({
pathway_id: '<string>',
agent_prompt: '<string>',
allowed_domains: ['<string>'],
messages_per_minute: 123,
config: '<any>',
agent_id: '<string>',
webhook_url: '<string>'
})
};
fetch('https://api.bland.ai/v1/widget', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bland.ai/v1/widget",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pathway_id' => '<string>',
'agent_prompt' => '<string>',
'allowed_domains' => [
'<string>'
],
'messages_per_minute' => 123,
'config' => '<any>',
'agent_id' => '<string>',
'webhook_url' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bland.ai/v1/widget"
payload := strings.NewReader("{\n \"pathway_id\": \"<string>\",\n \"agent_prompt\": \"<string>\",\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"messages_per_minute\": 123,\n \"config\": \"<any>\",\n \"agent_id\": \"<string>\",\n \"webhook_url\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("authorization", "<authorization>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bland.ai/v1/widget")
.header("authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"pathway_id\": \"<string>\",\n \"agent_prompt\": \"<string>\",\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"messages_per_minute\": 123,\n \"config\": \"<any>\",\n \"agent_id\": \"<string>\",\n \"webhook_url\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bland.ai/v1/widget")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["authorization"] = '<authorization>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pathway_id\": \"<string>\",\n \"agent_prompt\": \"<string>\",\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"messages_per_minute\": 123,\n \"config\": \"<any>\",\n \"agent_id\": \"<string>\",\n \"webhook_url\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": 200,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"pathway_id": "a0f0d4ed-f5f5-4f16-b3f9-22166594d7a7",
"agent_id": null,
"allowed_domains": ["example.com", "subdomain.example.com"],
"messages_per_minute": 10,
"config": {
"theme": "light",
"position": "bottom-right",
"timeoutSeconds": 3600
},
"webhook_url": "https://example.com/webhook",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"errors": null
}
Headers
Your API key for authentication.
Body
UUID of the pathway to associate with the widget. Must be defined if
agent_prompt is null.Prompt to use for the widget agent. Must be defined if
pathway_id is null.Array of domains where the widget can be embedded.
Rate limit for messages (minimum: 0).
Widget configuration object (flexible JSON). Supports
timeoutSeconds to configure conversation timeout (default: 86400 seconds / 24 hours).Optional UUID of agent to associate with widget.
Optional URL to receive post-conversation webhook payloads when conversations end. See Post-Conversation Webhooks for payload details.
Response
HTTP status code (200 for success).
The created widget object containing:
id(string): Generated widget UUIDpathway_id(string): Associated pathway UUIDagent_id(string | null): Associated agent UUID or nullallowed_domains(string[]): Array of allowed domainsmessages_per_minute(number): Rate limit for messagesconfig(object): Widget configuration objectwebhook_url(string | null): Post-conversation webhook URL or nullcreated_at(string): ISO timestampupdated_at(string): ISO timestamp
Always null on successful response.
{
"status": 200,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"pathway_id": "a0f0d4ed-f5f5-4f16-b3f9-22166594d7a7",
"agent_id": null,
"allowed_domains": ["example.com", "subdomain.example.com"],
"messages_per_minute": 10,
"config": {
"theme": "light",
"position": "bottom-right",
"timeoutSeconds": 3600
},
"webhook_url": "https://example.com/webhook",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"errors": null
}
Docs for agents: llms.txt
Was this page helpful?
⌘I