Skip to main content
GET
/
api
/
nucleus
/
captures
/
{id}
Get a single capture and its extracted items
curl --request GET \
  --url https://app.auditynow.com/api/nucleus/captures/{id} \
  --header 'Authorization: Bearer <token>'
{
  "capture": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "channel": "transcript",
    "rawContent": "<string>",
    "status": "pending",
    "capturedAt": "2023-11-07T05:31:56Z",
    "userId": "<string>",
    "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "contentType": "<string>",
    "processedContent": "<string>",
    "processingResults": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "captureId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "itemType": "<string>",
      "content": "<string>",
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.auditynow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Personal Access Token issued from https://app.auditynow.com/dashboard/settings/api-tokens. Format: aky_<32 random chars>.

Path Parameters

id
string<uuid>
required

The capture's UUID.

Response

Capture and its extracted items

capture
object
required

A unit of information ingested into Nucleus. Mirrors nucleus_captures table.

items
object[]
required