API reference

AltSignals Console

← All docs

API reference

Base URL: https://company-search.creative-pandas.ch/api/scraping All endpoints require the X-API-Key header.

POST /jobs/

Submit one or more LinkedIn company URLs for processing.

Body

{ "urls_input": ["https://www.linkedin.com/company/anthropic/"] }

Response 201 Created

{
  "job_id": "b2c3…",
  "tasks": [{ "id": "11111111-…", "url": "https://www.linkedin.com/company/anthropic/", "status": "queued" }]
}

GET /tasks/{id}/

Status of a single task.

{
  "task_id": "11111111-…",
  "job_id": "b2c3…",
  "url": "https://www.linkedin.com/company/anthropic/",
  "status": "complete",
  "submitted_at": "2026-07-06T09:00:00Z",
  "completed_at": "2026-07-06T09:07:00Z",
  "has_extracted_data": true
}

status: queued · in_progress · complete · no_public_data · page_not_found.

GET /tasks/{id}/extracted_data/

The structured result. Shape is documented in the data dictionary.

{
  "task_id": "11111111-…",
  "url": "https://www.linkedin.com/company/anthropic/",
  "extracted_data": { "about": { "name": "Anthropic", "...": "..." } }
}

Returns 404 while data is not yet available.

Webhooks

Register a delivery endpoint to be notified on completion instead of polling — see webhooks.