Skip to main content
GET
/
csv-enrichment
/
{jobId}
Get CSV Enrichment Job
curl --request GET \
  --url https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "progress": {
      "processed": 1,
      "total": 1
    },
    "submittedAt": "2023-11-07T05:31:56Z",
    "completedAt": "2023-11-07T05:31:56Z",
    "summary": {
      "totalInputs": 1,
      "matched": 1,
      "unmatched": 1,
      "withFundingSignals": 1,
      "withAcquisitionSignals": 1,
      "withHiringSignals": 1,
      "withJobChangeSignals": 1
    },
    "results": [
      {
        "input": {},
        "matched": true,
        "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "company": {
          "name": "<string>",
          "domain": "<string>",
          "industry": "<string>",
          "country": "<string>",
          "employeeCount": 123
        },
        "signals": {
          "funding": [
            {}
          ],
          "acquisition": [
            {}
          ],
          "hiring": [
            {}
          ],
          "job_change": [
            {}
          ],
          "investors": [
            {}
          ]
        }
      }
    ],
    "nextCursor": "<string>",
    "error": {
      "message": "<string>"
    }
  },
  "meta": {
    "endpoint": "<string>",
    "creditsUsed": 123
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Signalbase API key. Include as Bearer token in the Authorization header.

Path Parameters

jobId
string<uuid>
required

Job ID returned by POST /csv-enrichment

Query Parameters

cursor
string

Pagination cursor returned as data.nextCursor

limit
integer
default:50

Results per page. Defaults to 50, maximum 100.

Required range: 1 <= x <= 100

Response

Job status and results

success
boolean
required
data
object
required
meta
object
required