List Submissions
Retrieve past Signal submissions for your team, newest first.
GET https://app.resemble.ai/api/v2/signal
Query parameters
| Field | Type | Required | Description |
|---|---|---|---|
page | integer | No | Page number. Defaults to 1. |
per_page | integer | No | Results per page. Defaults to 10, maximum 100. |
Example
$ curl --request GET 'https://app.resemble.ai/api/v2/signal?page=1&per_page=25' \ > -H 'Authorization: Bearer YOUR_API_TOKEN'
Response
1 { 2 "success": true, 3 "items": [ 4 { 5 "id": 12345, 6 "input_modality": "text", 7 "filename": null, 8 "content_type": null, 9 "text_preview": "wire the funds now to this account…", 10 "verdict": "fraud", 11 "top_category": { "name": "CEO Impersonation / Wire Diversion", "icon": "👔", "score": 0.91 }, 12 "benign_score": 0.12, 13 "margin_over_second": 0.21, 14 "response": { "...": "full scorer output, matching the Score Content response item" }, 15 "created_at": "2026-06-14T10:30:45.123Z" 16 } 17 ], 18 "page": 1, 19 "per_page": 25, 20 "total_count": 42, 21 "total_pages": 2 22 }
Response fields
| Field | Type | Description |
|---|---|---|
success | boolean | Whether the API request succeeded. |
items[].id | integer | Submission identifier. |
items[].input_modality | string | text, audio, video, or image. |
items[].filename | string | null | Original filename for file submissions. |
items[].content_type | string | null | MIME type for file submissions. |
items[].text_preview | string | null | Truncated copy of the submitted text. null for file submissions. |
items[].verdict | string | safe, suspicious, or fraud. |
items[].top_category | object | Highest-scoring category for the submission. |
items[].benign_score | number | How strongly the content matched benign content. |
items[].margin_over_second | number | Gap between the top category score and the runner-up. |
items[].response | object | The complete scorer output, identical to the Score Content response item. |
items[].created_at | string | Submission timestamp. |
page | integer | Current page. |
per_page | integer | Results per page. |
total_count | integer | Total submissions available. |
total_pages | integer | Total pages available. |
