BixelDocs
API reference

Get a company record

GET
/v1/companies/{company}

Get a company's full current state: facts across all dimensions (pricing, features, security, positioning, stack, hiring, reliability, funding, location, legal), each with provenance, as_of date, and source URL. Identify companies by apex domain, e.g. pinecone.io. Tracked-not-member domains answer with a tier-labeled minimal record (liveness + discovery receipts, zero facts) instead of 404.

Path Parameters

company*string

Apex domain (canonical, e.g. pinecone.io). Bare values are resolved as legacy slugs. Unknown names: resolve via /v1/search first.

Query Parameters

response_format?string

concise = coverage, jobs, and per-dimension counts + last-changed dates with facts omitted (roughly 10x fewer tokens; drill in with the facts endpoint). Default detailed.

Value in

  • "detailed"
  • "concise"

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/companies/pinecone.io"
{  "data": {    "company": {      "name": "string",      "domain": "string",      "slug": "string",      "bixel_id": "string",      "served_since": "2019-08-24",      "categories": [        "string"      ]    },    "last_captured_at": "2019-08-24",    "jobs": {      "active_postings": 0,      "ats_tracked": true,      "note": "string"    },    "dimensions": {      "property1": {        "count": 0,        "last_changed_at": "string",        "facts": [          {            "key": "pricing.model",            "value": null,            "unit": "usd_per_month",            "provenance": "observed",            "as_of": "2019-08-24",            "source_url": "string",            "capture_id": "string",            "product": "string"          }        ]      },      "property2": {        "count": 0,        "last_changed_at": "string",        "facts": [          {            "key": "pricing.model",            "value": null,            "unit": "usd_per_month",            "provenance": "observed",            "as_of": "2019-08-24",            "source_url": "string",            "capture_id": "string",            "product": "string"          }        ]      }    },    "coverage": {      "dimensions_captured": 0,      "dimensions_total": 0,      "per_dimension": {        "property1": 0,        "property2": 0      },      "thin": true    }  },  "meta": {    "generated_at": "2019-08-24T14:15:22Z",    "count": 0,    "total": 0,    "next_cursor": "string",    "notice": "string",    "window": {      "served_from": "string",      "earliest_event_at": "string",      "events_beyond_window": true    }  }}
{  "type": "http://example.com",  "title": "string",  "status": 0,  "code": "company_not_found",  "detail": "string",  "hint": "string",  "docs_url": "http://example.com"}
{  "type": "http://example.com",  "title": "string",  "status": 0,  "code": "company_not_found",  "detail": "string",  "hint": "string",  "docs_url": "http://example.com"}
{  "type": "http://example.com",  "title": "string",  "status": 0,  "code": "company_not_found",  "detail": "string",  "hint": "string",  "docs_url": "http://example.com"}