For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • API Reference
      • POSTRun intelligence
      • GETList intelligences
      • GETGet intelligence
Status
LogoLogo
API ReferenceIntelligence

Run intelligence

POST
https://app.resemble.ai/api/v2/intelligence
POST
/api/v2/intelligence
$curl -X POST https://app.resemble.ai/api/v2/intelligence \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{}'
200Successful
1{
2 "success": true,
3 "item": {
4 "uuid": "string",
5 "created_at": "2024-01-15T09:30:00Z",
6 "detect_uuid": "string",
7 "media_type": "audio",
8 "description": {
9 "speaker_info": "string",
10 "language": "string",
11 "dialect": "string",
12 "emotion": "string",
13 "speaking_style": "string",
14 "context": "string",
15 "message": "string",
16 "abnormalities": "string",
17 "transcription": "string",
18 "translation": "string",
19 "misinformation": "string",
20 "fraud": {
21 "type": "none",
22 "confidence": 95,
23 "reasoning": "string"
24 },
25 "liveness": {
26 "assessment": "real_person",
27 "confidence": 88,
28 "indicators": "string"
29 },
30 "digitally_altered": {
31 "detected": true,
32 "confidence": 92,
33 "alterations": "string"
34 }
35 }
36 }
37}
Analyze audio, image, or video for comprehensive insights. Optionally reference an existing detect to associate.
Was this page helpful?
Previous

List intelligences

Next
Built with

Authentication

AuthorizationBearer

API token from https://app.resemble.ai/account/api

Request

This endpoint expects an object.
media_tokenstringOptional

Token for uploaded media file (from secure upload)

urlstringOptionalformat: "uri"
HTTPS URL to audio, image, or video file
detect_idstringOptionalformat: "uuid"
UUID of an existing detect to associate
media_typeenumOptional

Explicit media type (auto-detected if not provided)

Allowed values:
callback_urlstringOptionalformat: "uri"
URL that receives the final intelligence payload via HTTP POST. When present, the request runs asynchronously and returns 202 Accepted.

Response

Intelligence analysis
successboolean
itemobject