Arama içi araçları listele
curl --request GET \
--url https://app.whattalk.ai/api/user/tools \
--header 'Accept: <accept>' \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>'[
{
"id": 1,
"name": "get_weather",
"description": "Use this tool to get the current weather in a specific city. Call this when the customer asks about weather conditions.",
"endpoint": "https://api.openweathermap.org/data/2.5/weather",
"method": "GET",
"timeout": 10,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "Bearer sk_..."
}
],
"schema": [
{
"name": "city",
"type": "string",
"description": "The city name to get weather for"
},
{
"name": "temperature",
"type": "number",
"description": "Current temperature value"
},
{
"name": "is_raining",
"type": "boolean",
"description": "Whether it is currently raining"
}
],
"created_at": "2025-10-10T12:00:00.000000Z",
"updated_at": "2025-10-10T12:00:00.000000Z"
},
{
"id": 2,
"name": "send_notification",
"description": "Use this tool to send a notification to the customer. Call this when customer requests updates.",
"endpoint": "https://api.yourcompany.com/notifications/send",
"method": "POST",
"timeout": 15,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
}
],
"schema": [
{
"name": "message",
"type": "string",
"description": "The notification message to send"
},
{
"name": "priority_level",
"type": "number",
"description": "Priority level from 1 to 5"
},
{
"name": "send_sms",
"type": "boolean",
"description": "Whether to also send SMS notification"
}
],
"created_at": "2025-10-09T14:30:00.000000Z",
"updated_at": "2025-10-10T09:15:00.000000Z"
}
]
Arama İçi Araçlar
Arama içi araçları listele
Tüm arama içi araçları getirin
GET
/
user
/
tools
Arama içi araçları listele
curl --request GET \
--url https://app.whattalk.ai/api/user/tools \
--header 'Accept: <accept>' \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>'[
{
"id": 1,
"name": "get_weather",
"description": "Use this tool to get the current weather in a specific city. Call this when the customer asks about weather conditions.",
"endpoint": "https://api.openweathermap.org/data/2.5/weather",
"method": "GET",
"timeout": 10,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "Bearer sk_..."
}
],
"schema": [
{
"name": "city",
"type": "string",
"description": "The city name to get weather for"
},
{
"name": "temperature",
"type": "number",
"description": "Current temperature value"
},
{
"name": "is_raining",
"type": "boolean",
"description": "Whether it is currently raining"
}
],
"created_at": "2025-10-10T12:00:00.000000Z",
"updated_at": "2025-10-10T12:00:00.000000Z"
},
{
"id": 2,
"name": "send_notification",
"description": "Use this tool to send a notification to the customer. Call this when customer requests updates.",
"endpoint": "https://api.yourcompany.com/notifications/send",
"method": "POST",
"timeout": 15,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
}
],
"schema": [
{
"name": "message",
"type": "string",
"description": "The notification message to send"
},
{
"name": "priority_level",
"type": "number",
"description": "Priority level from 1 to 5"
},
{
"name": "send_sms",
"type": "boolean",
"description": "Whether to also send SMS notification"
}
],
"created_at": "2025-10-09T14:30:00.000000Z",
"updated_at": "2025-10-10T09:15:00.000000Z"
}
]
Bu endpoint, tüm arama içi araçları getirmenizi sağlar. Arama içi araçlar, yapay zeka asistanlarınızın arama sırasında harici API’lerle etkileşim kurmasını sağlar.
Başlıklar
Kimlik doğrulama için Bearer token
application/json olmalıdırapplication/json olmalıdırYanıt alanları
Arama içi araçlar dizisi
Göster özellikler
Göster özellikler
Aracın benzersiz tanımlayıcısı
Aracın adı (alt çizgi ile küçük harfler)
Yapay zekanın bu aracı ne zaman ve nasıl kullanması gerektiğinin ayrıntılı açıklaması
Çağrılacak API endpoint URL’si
HTTP yöntemi (GET, POST, PUT, PATCH, DELETE)
Saniye cinsinden istek zaman aşımı (1-30)
Aracın oluşturulma ISO 8601 zaman damgası
Aracın son güncellenme ISO 8601 zaman damgası
[
{
"id": 1,
"name": "get_weather",
"description": "Use this tool to get the current weather in a specific city. Call this when the customer asks about weather conditions.",
"endpoint": "https://api.openweathermap.org/data/2.5/weather",
"method": "GET",
"timeout": 10,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "Bearer sk_..."
}
],
"schema": [
{
"name": "city",
"type": "string",
"description": "The city name to get weather for"
},
{
"name": "temperature",
"type": "number",
"description": "Current temperature value"
},
{
"name": "is_raining",
"type": "boolean",
"description": "Whether it is currently raining"
}
],
"created_at": "2025-10-10T12:00:00.000000Z",
"updated_at": "2025-10-10T12:00:00.000000Z"
},
{
"id": 2,
"name": "send_notification",
"description": "Use this tool to send a notification to the customer. Call this when customer requests updates.",
"endpoint": "https://api.yourcompany.com/notifications/send",
"method": "POST",
"timeout": 15,
"headers": [
{
"name": "Content-Type",
"value": "application/json"
}
],
"schema": [
{
"name": "message",
"type": "string",
"description": "The notification message to send"
},
{
"name": "priority_level",
"type": "number",
"description": "Priority level from 1 to 5"
},
{
"name": "send_sms",
"type": "boolean",
"description": "Whether to also send SMS notification"
}
],
"created_at": "2025-10-09T14:30:00.000000Z",
"updated_at": "2025-10-10T09:15:00.000000Z"
}
]
Araçları Asistanlara Atama
Bu araçları asistanlarla kullanmak için bakınız:- Asistan Oluştur -
tool_idsparametresini kullanarak araçları ekleyin - Asistan Güncelle -
tool_idsparametresini kullanarak araç atamalarını yönetin
⌘I

