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
      • GETList all detects
      • POSTCreate deepfake detection
      • GETGet deepfake detection result
      • POSTCreate a batch deepfake detection job
      • GETGet batch status
Status
LogoLogo
API ReferenceDeepfake Detection

Get batch status

GET
https://app.resemble.ai/api/v2/detect/batch/:uuid
GET
/api/v2/detect/batch/:uuid
$curl https://app.resemble.ai/api/v2/detect/batch/uuid \
> -H "Authorization: Bearer <token>"
1{
2 "success": true,
3 "item": {
4 "uuid": "string",
5 "status": "processing",
6 "total_files": 1,
7 "completed_count": 1,
8 "failed_count": 1,
9 "created_at": "2024-01-15T09:30:00Z",
10 "detect_uuids": [
11 "string"
12 ]
13 }
14}

Retrieve the latest aggregate status for a batch. The response shape mirrors the create response — status, completed_count, and failed_count update as child detects progress. Use the detect_uuids array to fetch per-file results via GET /detect/{uuid}.

Was this page helpful?
Previous

Run intelligence

Next
Built with

Authentication

AuthorizationBearer

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

Path parameters

uuidstringRequired

Batch UUID returned by POST /detect/batch.

Response

Batch status
successboolean
itemobject

Aggregate state for a batch detection job. Returned by POST /detect/batch and GET /detect/batch/{uuid}.

Errors

404
Not Found Error