curl --request POST \
--url https://api.kakiyo.com/v1/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Sales Engagement Pro",
"description": "Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\n\nKey benefits include:\n- 3x increase in response rates compared to traditional outreach\n- 70% reduction in time spent on manual follow-ups\n- Seamless integration with existing CRM systems\n- Real-time insights on prospect engagement\n- Smart prioritization of high-potential leads\n\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation."
}
'import requests
url = "https://api.kakiyo.com/v1/products"
payload = {
"name": "Sales Engagement Pro",
"description": "Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.
Key benefits include:
- 3x increase in response rates compared to traditional outreach
- 70% reduction in time spent on manual follow-ups
- Seamless integration with existing CRM systems
- Real-time insights on prospect engagement
- Smart prioritization of high-potential leads
Our customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation."
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Sales Engagement Pro',
description: 'Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\n\nKey benefits include:\n- 3x increase in response rates compared to traditional outreach\n- 70% reduction in time spent on manual follow-ups\n- Seamless integration with existing CRM systems\n- Real-time insights on prospect engagement\n- Smart prioritization of high-potential leads\n\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.'
})
};
fetch('https://api.kakiyo.com/v1/products', 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.kakiyo.com/v1/products",
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([
'name' => 'Sales Engagement Pro',
'description' => 'Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.
Key benefits include:
- 3x increase in response rates compared to traditional outreach
- 70% reduction in time spent on manual follow-ups
- Seamless integration with existing CRM systems
- Real-time insights on prospect engagement
- Smart prioritization of high-potential leads
Our customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.kakiyo.com/v1/products"
payload := strings.NewReader("{\n \"name\": \"Sales Engagement Pro\",\n \"description\": \"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\\n\\nKey benefits include:\\n- 3x increase in response rates compared to traditional outreach\\n- 70% reduction in time spent on manual follow-ups\\n- Seamless integration with existing CRM systems\\n- Real-time insights on prospect engagement\\n- Smart prioritization of high-potential leads\\n\\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.kakiyo.com/v1/products")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Sales Engagement Pro\",\n \"description\": \"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\\n\\nKey benefits include:\\n- 3x increase in response rates compared to traditional outreach\\n- 70% reduction in time spent on manual follow-ups\\n- Seamless integration with existing CRM systems\\n- Real-time insights on prospect engagement\\n- Smart prioritization of high-potential leads\\n\\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kakiyo.com/v1/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Sales Engagement Pro\",\n \"description\": \"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\\n\\nKey benefits include:\\n- 3x increase in response rates compared to traditional outreach\\n- 70% reduction in time spent on manual follow-ups\\n- Seamless integration with existing CRM systems\\n- Real-time insights on prospect engagement\\n- Smart prioritization of high-potential leads\\n\\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.\"\n}"
response = http.request(request)
puts response.read_body{
"id": "product_12345abcde",
"message": "Product created successfully"
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}Create product
Creates a new product
curl --request POST \
--url https://api.kakiyo.com/v1/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Sales Engagement Pro",
"description": "Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\n\nKey benefits include:\n- 3x increase in response rates compared to traditional outreach\n- 70% reduction in time spent on manual follow-ups\n- Seamless integration with existing CRM systems\n- Real-time insights on prospect engagement\n- Smart prioritization of high-potential leads\n\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation."
}
'import requests
url = "https://api.kakiyo.com/v1/products"
payload = {
"name": "Sales Engagement Pro",
"description": "Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.
Key benefits include:
- 3x increase in response rates compared to traditional outreach
- 70% reduction in time spent on manual follow-ups
- Seamless integration with existing CRM systems
- Real-time insights on prospect engagement
- Smart prioritization of high-potential leads
Our customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation."
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Sales Engagement Pro',
description: 'Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\n\nKey benefits include:\n- 3x increase in response rates compared to traditional outreach\n- 70% reduction in time spent on manual follow-ups\n- Seamless integration with existing CRM systems\n- Real-time insights on prospect engagement\n- Smart prioritization of high-potential leads\n\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.'
})
};
fetch('https://api.kakiyo.com/v1/products', 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.kakiyo.com/v1/products",
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([
'name' => 'Sales Engagement Pro',
'description' => 'Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.
Key benefits include:
- 3x increase in response rates compared to traditional outreach
- 70% reduction in time spent on manual follow-ups
- Seamless integration with existing CRM systems
- Real-time insights on prospect engagement
- Smart prioritization of high-potential leads
Our customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.kakiyo.com/v1/products"
payload := strings.NewReader("{\n \"name\": \"Sales Engagement Pro\",\n \"description\": \"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\\n\\nKey benefits include:\\n- 3x increase in response rates compared to traditional outreach\\n- 70% reduction in time spent on manual follow-ups\\n- Seamless integration with existing CRM systems\\n- Real-time insights on prospect engagement\\n- Smart prioritization of high-potential leads\\n\\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.kakiyo.com/v1/products")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Sales Engagement Pro\",\n \"description\": \"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\\n\\nKey benefits include:\\n- 3x increase in response rates compared to traditional outreach\\n- 70% reduction in time spent on manual follow-ups\\n- Seamless integration with existing CRM systems\\n- Real-time insights on prospect engagement\\n- Smart prioritization of high-potential leads\\n\\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kakiyo.com/v1/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Sales Engagement Pro\",\n \"description\": \"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\\n\\nKey benefits include:\\n- 3x increase in response rates compared to traditional outreach\\n- 70% reduction in time spent on manual follow-ups\\n- Seamless integration with existing CRM systems\\n- Real-time insights on prospect engagement\\n- Smart prioritization of high-potential leads\\n\\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation.\"\n}"
response = http.request(request)
puts response.read_body{
"id": "product_12345abcde",
"message": "Product created successfully"
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Product to create
3"Sales Engagement Pro"
10"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts. The solution includes multi-channel communication capabilities, personalized messaging at scale, advanced analytics, and CRM integration.\n\nKey benefits include:\n- 3x increase in response rates compared to traditional outreach\n- 70% reduction in time spent on manual follow-ups\n- Seamless integration with existing CRM systems\n- Real-time insights on prospect engagement\n- Smart prioritization of high-potential leads\n\nOur customers typically see ROI within the first 60 days and experience a 40% increase in sales pipeline generation."

