curl --request POST \
--url 'https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0' \
--header 'Content-Type: application/json' \
--data '
{
"businessNumbers": [
177337970010644,
177337970029743
],
"aiModels": [
"CHATGPT",
"GEMINI",
"PERPLEXITY"
],
"startDate": "2026-03-01T00:00:00.000Z",
"endDate": "2026-03-31T00:00:00.000Z",
"viewReportType": "LOCATION_LEVEL"
}
'import requests
url = "https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0"
payload = {
"businessNumbers": [177337970010644, 177337970029743],
"aiModels": ["CHATGPT", "GEMINI", "PERPLEXITY"],
"startDate": "2026-03-01T00:00:00.000Z",
"endDate": "2026-03-31T00:00:00.000Z",
"viewReportType": "LOCATION_LEVEL"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
businessNumbers: [177337970010644, 177337970029743],
aiModels: ['CHATGPT', 'GEMINI', 'PERPLEXITY'],
startDate: '2026-03-01T00:00:00.000Z',
endDate: '2026-03-31T00:00:00.000Z',
viewReportType: 'LOCATION_LEVEL'
})
};
fetch('https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0', 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.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0",
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([
'businessNumbers' => [
177337970010644,
177337970029743
],
'aiModels' => [
'CHATGPT',
'GEMINI',
'PERPLEXITY'
],
'startDate' => '2026-03-01T00:00:00.000Z',
'endDate' => '2026-03-31T00:00:00.000Z',
'viewReportType' => 'LOCATION_LEVEL'
]),
CURLOPT_HTTPHEADER => [
"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.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0"
payload := strings.NewReader("{\n \"businessNumbers\": [\n 177337970010644,\n 177337970029743\n ],\n \"aiModels\": [\n \"CHATGPT\",\n \"GEMINI\",\n \"PERPLEXITY\"\n ],\n \"startDate\": \"2026-03-01T00:00:00.000Z\",\n \"endDate\": \"2026-03-31T00:00:00.000Z\",\n \"viewReportType\": \"LOCATION_LEVEL\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0")
.header("Content-Type", "application/json")
.body("{\n \"businessNumbers\": [\n 177337970010644,\n 177337970029743\n ],\n \"aiModels\": [\n \"CHATGPT\",\n \"GEMINI\",\n \"PERPLEXITY\"\n ],\n \"startDate\": \"2026-03-01T00:00:00.000Z\",\n \"endDate\": \"2026-03-31T00:00:00.000Z\",\n \"viewReportType\": \"LOCATION_LEVEL\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"businessNumbers\": [\n 177337970010644,\n 177337970029743\n ],\n \"aiModels\": [\n \"CHATGPT\",\n \"GEMINI\",\n \"PERPLEXITY\"\n ],\n \"startDate\": \"2026-03-01T00:00:00.000Z\",\n \"endDate\": \"2026-03-31T00:00:00.000Z\",\n \"viewReportType\": \"LOCATION_LEVEL\"\n}"
response = http.request(request)
puts response.read_body{
"total": 4,
"hasNext": false,
"data": {
"177337970010644": {
"2026-03-17": {
"PERPLEXITY": {
"strengths": [
{
"title": "Affiliation with Reputable Network",
"description": "Part of Sutter Health, bringing award-winning care to Solvang neighborhood with established oncology and infusion services."
},
{
"title": "Convenient Extended Hours",
"description": "Open Monday through Thursday until 6 PM, accommodating local working professionals in the Viborg Specialty Building."
},
{
"title": "Positive Patient Experiences",
"description": "Local customers highlight excellent professional care, compelling first-time reviews for the facility."
}
],
"weaknesses": [
{
"title": "Limited Operating Days",
"description": "Closed Fridays, Saturdays, Sundays, and major holidays, reducing accessibility for Solvang residents needing weekend care."
},
{
"title": "Lunchtime Closure",
"description": "Daily closure from 12-1 PM restricts same-day urgent infusion or oncology visits during peak hours."
},
{
"title": "Sparse Specific Feedback",
"description": "Few reviews directly address infusion services, with most feedback general to the care center."
}
],
"oppurtunities": [
{
"title": "Proximity to Diagnostics",
"description": "Co-located with Quest Diagnostics in the same building, enabling seamless lab integration for Solvang patients."
},
{
"title": "Cancer Care Demand",
"description": "Ridley-Tree Cancer Center presence supports expanding infusion services amid local oncology needs."
},
{
"title": "Tourist Community Growth",
"description": "Solvang's popularity as a tourist destination offers potential to serve seasonal visitors requiring infusion therapy."
}
],
"threats": [
{
"title": "Competitor Overlap",
"description": "Nearby Sansum Clinic departments at the same address create internal competition for specialized care."
},
{
"title": "Seasonal Traffic Fluctuations",
"description": "Solvang's heavy tourist traffic on Viborg Road may cause access issues during peak events."
},
{
"title": "Regional Healthcare Shifts",
"description": "Potential changes in Sutter Health or local regulations could impact infusion center operations."
}
]
},
"CHATGPT": {
"strengths": [
{
"title": "Highly qualified staff",
"description": "Patients appreciate the knowledgeable and friendly staff who provide exceptional care."
},
{
"title": "Collaborations with local healthcare",
"description": "Strong ties with local healthcare providers increase trust and referral rates."
},
{
"title": "Convenient location",
"description": "Located conveniently for residents, with easy access from different parts of the neighborhood."
}
],
"weaknesses": [
{
"title": "Limited parking space",
"description": "Some patients report challenges in finding parking during peak hours."
},
{
"title": "Wait times during peak hours",
"description": "Occasional increased wait times have been noted, particularly during busy periods."
},
{
"title": "Restricted operating hours",
"description": "Operating hours may not accommodate everyone, especially those needing evening appointments."
}
],
"oppurtunities": [
{
"title": "Expansion of services",
"description": "Potential to add more services to cater to a broader range of infusion needs."
},
{
"title": "Partnership with more local clinics",
"description": "Building more partnerships could further solidify its local presence and patient base."
},
{
"title": "Community outreach programs",
"description": "Engaging in more community health events could raise awareness and attract new patients."
}
],
"threats": [
{
"title": "Increased competition",
"description": "Emerging local clinics could present competition, potentially affecting market share."
},
{
"title": "Economic fluctuations",
"description": "Local and national economic changes could affect healthcare funding and patient affordability."
},
{
"title": "Regulatory changes",
"description": "Potential regulatory changes in healthcare practices could impact operations and compliance."
}
]
}
}
}
}
}{
"code": 1161,
"message": "Invalid API key"
}{
"code": 89,
"message": "Rate limit exceeded"
}Get Sentiment Report
Returns the sentiment report for the specified business, providing insights into customer sentiment across supported platforms.
curl --request POST \
--url 'https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0' \
--header 'Content-Type: application/json' \
--data '
{
"businessNumbers": [
177337970010644,
177337970029743
],
"aiModels": [
"CHATGPT",
"GEMINI",
"PERPLEXITY"
],
"startDate": "2026-03-01T00:00:00.000Z",
"endDate": "2026-03-31T00:00:00.000Z",
"viewReportType": "LOCATION_LEVEL"
}
'import requests
url = "https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0"
payload = {
"businessNumbers": [177337970010644, 177337970029743],
"aiModels": ["CHATGPT", "GEMINI", "PERPLEXITY"],
"startDate": "2026-03-01T00:00:00.000Z",
"endDate": "2026-03-31T00:00:00.000Z",
"viewReportType": "LOCATION_LEVEL"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
businessNumbers: [177337970010644, 177337970029743],
aiModels: ['CHATGPT', 'GEMINI', 'PERPLEXITY'],
startDate: '2026-03-01T00:00:00.000Z',
endDate: '2026-03-31T00:00:00.000Z',
viewReportType: 'LOCATION_LEVEL'
})
};
fetch('https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0', 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.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0",
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([
'businessNumbers' => [
177337970010644,
177337970029743
],
'aiModels' => [
'CHATGPT',
'GEMINI',
'PERPLEXITY'
],
'startDate' => '2026-03-01T00:00:00.000Z',
'endDate' => '2026-03-31T00:00:00.000Z',
'viewReportType' => 'LOCATION_LEVEL'
]),
CURLOPT_HTTPHEADER => [
"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.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0"
payload := strings.NewReader("{\n \"businessNumbers\": [\n 177337970010644,\n 177337970029743\n ],\n \"aiModels\": [\n \"CHATGPT\",\n \"GEMINI\",\n \"PERPLEXITY\"\n ],\n \"startDate\": \"2026-03-01T00:00:00.000Z\",\n \"endDate\": \"2026-03-31T00:00:00.000Z\",\n \"viewReportType\": \"LOCATION_LEVEL\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0")
.header("Content-Type", "application/json")
.body("{\n \"businessNumbers\": [\n 177337970010644,\n 177337970029743\n ],\n \"aiModels\": [\n \"CHATGPT\",\n \"GEMINI\",\n \"PERPLEXITY\"\n ],\n \"startDate\": \"2026-03-01T00:00:00.000Z\",\n \"endDate\": \"2026-03-31T00:00:00.000Z\",\n \"viewReportType\": \"LOCATION_LEVEL\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.birdeye.com/resources/v1/listing/searchAi/public/swot-details?page-size=100&start-index=0")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"businessNumbers\": [\n 177337970010644,\n 177337970029743\n ],\n \"aiModels\": [\n \"CHATGPT\",\n \"GEMINI\",\n \"PERPLEXITY\"\n ],\n \"startDate\": \"2026-03-01T00:00:00.000Z\",\n \"endDate\": \"2026-03-31T00:00:00.000Z\",\n \"viewReportType\": \"LOCATION_LEVEL\"\n}"
response = http.request(request)
puts response.read_body{
"total": 4,
"hasNext": false,
"data": {
"177337970010644": {
"2026-03-17": {
"PERPLEXITY": {
"strengths": [
{
"title": "Affiliation with Reputable Network",
"description": "Part of Sutter Health, bringing award-winning care to Solvang neighborhood with established oncology and infusion services."
},
{
"title": "Convenient Extended Hours",
"description": "Open Monday through Thursday until 6 PM, accommodating local working professionals in the Viborg Specialty Building."
},
{
"title": "Positive Patient Experiences",
"description": "Local customers highlight excellent professional care, compelling first-time reviews for the facility."
}
],
"weaknesses": [
{
"title": "Limited Operating Days",
"description": "Closed Fridays, Saturdays, Sundays, and major holidays, reducing accessibility for Solvang residents needing weekend care."
},
{
"title": "Lunchtime Closure",
"description": "Daily closure from 12-1 PM restricts same-day urgent infusion or oncology visits during peak hours."
},
{
"title": "Sparse Specific Feedback",
"description": "Few reviews directly address infusion services, with most feedback general to the care center."
}
],
"oppurtunities": [
{
"title": "Proximity to Diagnostics",
"description": "Co-located with Quest Diagnostics in the same building, enabling seamless lab integration for Solvang patients."
},
{
"title": "Cancer Care Demand",
"description": "Ridley-Tree Cancer Center presence supports expanding infusion services amid local oncology needs."
},
{
"title": "Tourist Community Growth",
"description": "Solvang's popularity as a tourist destination offers potential to serve seasonal visitors requiring infusion therapy."
}
],
"threats": [
{
"title": "Competitor Overlap",
"description": "Nearby Sansum Clinic departments at the same address create internal competition for specialized care."
},
{
"title": "Seasonal Traffic Fluctuations",
"description": "Solvang's heavy tourist traffic on Viborg Road may cause access issues during peak events."
},
{
"title": "Regional Healthcare Shifts",
"description": "Potential changes in Sutter Health or local regulations could impact infusion center operations."
}
]
},
"CHATGPT": {
"strengths": [
{
"title": "Highly qualified staff",
"description": "Patients appreciate the knowledgeable and friendly staff who provide exceptional care."
},
{
"title": "Collaborations with local healthcare",
"description": "Strong ties with local healthcare providers increase trust and referral rates."
},
{
"title": "Convenient location",
"description": "Located conveniently for residents, with easy access from different parts of the neighborhood."
}
],
"weaknesses": [
{
"title": "Limited parking space",
"description": "Some patients report challenges in finding parking during peak hours."
},
{
"title": "Wait times during peak hours",
"description": "Occasional increased wait times have been noted, particularly during busy periods."
},
{
"title": "Restricted operating hours",
"description": "Operating hours may not accommodate everyone, especially those needing evening appointments."
}
],
"oppurtunities": [
{
"title": "Expansion of services",
"description": "Potential to add more services to cater to a broader range of infusion needs."
},
{
"title": "Partnership with more local clinics",
"description": "Building more partnerships could further solidify its local presence and patient base."
},
{
"title": "Community outreach programs",
"description": "Engaging in more community health events could raise awareness and attract new patients."
}
],
"threats": [
{
"title": "Increased competition",
"description": "Emerging local clinics could present competition, potentially affecting market share."
},
{
"title": "Economic fluctuations",
"description": "Local and national economic changes could affect healthcare funding and patient affordability."
},
{
"title": "Regulatory changes",
"description": "Potential regulatory changes in healthcare practices could impact operations and compliance."
}
]
}
}
}
}
}{
"code": 1161,
"message": "Invalid API key"
}{
"code": 89,
"message": "Rate limit exceeded"
}Headers
e.g. application/json
e.g. [Required] Partner specific API key provided by Birdeye for data exchange.
e.g. [Required] User associated businessNumber
Media type of the JSON request body.
Body
Comma-separated list of business numbers to retrieve the report for.
Comma-separated list of AI models to include in the report. Possible values are [CHATGPT, GEMINI, PERPLEXITY]
Start date for the report range (format: yyyy-MM-dd).
End date for the report range (format: yyyy-MM-dd).
Defines the level at which the report is generated. Allowed values: LOCATION_LEVEL, ACCOUNT_LEVEL
Start date for the report range (format: yyyy-MM-dd).
End date for the report range (format: yyyy-MM-dd).
Defines the level at which the report is generated. Allowed values: LOCATION_LEVEL, ACCOUNT_LEVEL