Skip to main content
GET
/
v1
/
context
/
list
/
jobs
/
{job_id}
Get AI list job status and results
curl --request GET \
  --url https://app.nex.ai/api/developers/v1/context/list/jobs/{job_id} \
  --header 'Authorization: <api-key>'
{
  "message": {
    "job_id": "12345678901234567",
    "status": "completed",
    "created_at": "2024-01-15T10:30:00Z",
    "count": 2,
    "query_interpretation": "Finding all venture capital firms in the workspace",
    "entities": [
      {
        "id": "32710180831586564",
        "name": "Sequoia Capital",
        "type": "company",
        "reason": "Sequoia Capital is a well-known venture capital firm",
        "highlights": [
          "Invested in multiple portfolio companies",
          "Active in Series A and B funding rounds"
        ],
        "attributes": {
          "domains": [
            "sequoiacap.com"
          ],
          "industries": [
            "Venture Capital"
          ]
        }
      },
      {
        "id": "32710180831586565",
        "name": "Andreessen Horowitz",
        "type": "company",
        "reason": "a16z is a prominent venture capital firm",
        "highlights": [
          "Focus on technology investments"
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Path Parameters

job_id
string
required

Job ID returned from create job endpoint

Query Parameters

include_attributes
boolean

Include full attributes for each record in the results

Response

Job status and results (if completed)

message
object

Response wrapper