prism
Composites: ask once, get a finished verdict. Fans out across platforms in parallel, reports its own coverage, and refunds the slice it could not gather.
GET /v1/prism/share-of-voice
10 credits
background job
cached 15m
Parameters
| brand | required | e.g. anthropic |
| competitors | optional | e.g. openai,mistral |
curl "http://datatrend.nl/v1/prism/share-of-voice?brand=anthropic" \ -H "x-api-key: YOUR_KEY"
<?php
$ch = curl_init("http://datatrend.nl/v1/prism/share-of-voice?brand=anthropic");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['x-api-key: YOUR_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
print_r($data['data']);
import requests
r = requests.get(
"http://datatrend.nl/v1/prism/share-of-voice?brand=anthropic",
headers={"x-api-key": "YOUR_KEY"},
)
print(r.json()["data"])
const r = await fetch(
"http://datatrend.nl/v1/prism/share-of-voice?brand=anthropic",
{ headers: { "x-api-key": "YOUR_KEY" } }
);
const { data } = await r.json();
console.log(data);
GET /v1/prism/brand-mentions
10 credits
background job
cached 10m
Parameters
| brand | required | e.g. anthropic |
curl "http://datatrend.nl/v1/prism/brand-mentions?brand=anthropic" \ -H "x-api-key: YOUR_KEY"
<?php
$ch = curl_init("http://datatrend.nl/v1/prism/brand-mentions?brand=anthropic");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['x-api-key: YOUR_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
print_r($data['data']);
import requests
r = requests.get(
"http://datatrend.nl/v1/prism/brand-mentions?brand=anthropic",
headers={"x-api-key": "YOUR_KEY"},
)
print(r.json()["data"])
const r = await fetch(
"http://datatrend.nl/v1/prism/brand-mentions?brand=anthropic",
{ headers: { "x-api-key": "YOUR_KEY" } }
);
const { data } = await r.json();
console.log(data);
GET /v1/prism/review-integrity
10 credits
background job
cached 1h
Parameters
| appstore_id | optional | e.g. 324684580 |
| googleplay_id | optional | e.g. com.spotify.music |
curl "http://datatrend.nl/v1/prism/review-integrity" \ -H "x-api-key: YOUR_KEY"
<?php
$ch = curl_init("http://datatrend.nl/v1/prism/review-integrity");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['x-api-key: YOUR_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
print_r($data['data']);
import requests
r = requests.get(
"http://datatrend.nl/v1/prism/review-integrity",
headers={"x-api-key": "YOUR_KEY"},
)
print(r.json()["data"])
const r = await fetch(
"http://datatrend.nl/v1/prism/review-integrity",
{ headers: { "x-api-key": "YOUR_KEY" } }
);
const { data } = await r.json();
console.log(data);
GET /v1/prism/viral-analysis
10 credits
background job
cached 10m
Parameters
| topic | required | e.g. ai agents |
curl "http://datatrend.nl/v1/prism/viral-analysis?topic=ai+agents" \ -H "x-api-key: YOUR_KEY"
<?php
$ch = curl_init("http://datatrend.nl/v1/prism/viral-analysis?topic=ai+agents");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['x-api-key: YOUR_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
print_r($data['data']);
import requests
r = requests.get(
"http://datatrend.nl/v1/prism/viral-analysis?topic=ai+agents",
headers={"x-api-key": "YOUR_KEY"},
)
print(r.json()["data"])
const r = await fetch(
"http://datatrend.nl/v1/prism/viral-analysis?topic=ai+agents",
{ headers: { "x-api-key": "YOUR_KEY" } }
);
const { data } = await r.json();
console.log(data);
GET /v1/prism/sentiment-report
10 credits
background job
cached 15m
Parameters
| brand | required | e.g. anthropic |
curl "http://datatrend.nl/v1/prism/sentiment-report?brand=anthropic" \ -H "x-api-key: YOUR_KEY"
<?php
$ch = curl_init("http://datatrend.nl/v1/prism/sentiment-report?brand=anthropic");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['x-api-key: YOUR_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
print_r($data['data']);
import requests
r = requests.get(
"http://datatrend.nl/v1/prism/sentiment-report?brand=anthropic",
headers={"x-api-key": "YOUR_KEY"},
)
print(r.json()["data"])
const r = await fetch(
"http://datatrend.nl/v1/prism/sentiment-report?brand=anthropic",
{ headers: { "x-api-key": "YOUR_KEY" } }
);
const { data } = await r.json();
console.log(data);
GET /v1/prism/crisis-radar
10 credits
background job
cached 5m
Parameters
| brand | required | e.g. anthropic |
curl "http://datatrend.nl/v1/prism/crisis-radar?brand=anthropic" \ -H "x-api-key: YOUR_KEY"
<?php
$ch = curl_init("http://datatrend.nl/v1/prism/crisis-radar?brand=anthropic");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['x-api-key: YOUR_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
print_r($data['data']);
import requests
r = requests.get(
"http://datatrend.nl/v1/prism/crisis-radar?brand=anthropic",
headers={"x-api-key": "YOUR_KEY"},
)
print(r.json()["data"])
const r = await fetch(
"http://datatrend.nl/v1/prism/crisis-radar?brand=anthropic",
{ headers: { "x-api-key": "YOUR_KEY" } }
);
const { data } = await r.json();
console.log(data);