# Coresignal Company Profile by URL (via x402.orthogonal.com)

> Coresignal Company Profile by URL (via x402.orthogonal.com) is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.042/call, status unknown (last checked 2026-09-15).

Fetches a full company profile from Coresignal's professional network data by a specific company ID, returning the same structured data as a URL-based lookup.

## Facts

- Endpoint: GET https://x402.orthogonal.com/coresignal/v2/company_base/collect/98847749
- Price: $0.042/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coresignal-company-profile-by-url-via-x402-orthogonal-com-5a974bc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0xMH88WpwHsirDu5eJbBA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability coresignal-company-profile-by-url-via-x402-orthogonal-com-5a974bc0
```

Example prompt: Pull the full Coresignal company profile for company ID 98847749 — I need their industry, employee count, headquarters location, and founding date.

## When to prefer this

Use this endpoint when you already have a Coresignal company ID (e.g. 98847749) and need to retrieve the full structured company profile in one call. It is equivalent to the URL-based lookup but faster when the ID is known. Prefer it over general web scraping when you need structured, normalized company data (headcount, industry, founding date) rather than raw HTML. Choose it over search-based endpoints when you have a direct identifier and want to avoid ambiguity in results.

## Known failure modes

- Company ID not found — returns 404 or empty result if the ID does not exist in Coresignal's database
- Payment failure — x402 micropayment of $0.042 USDC not processed, request blocked
- Rate limiting — too many requests in a short period returns 429
- Invalid or malformed company ID in path — returns 400 bad request
- Data freshness lag — company profile may not reflect very recent changes to the professional network page

## How this service works

Get a full company profile by its professional network URL. Pass the URL-encoded company page URL in the path. Returns the same data as collecting by ID.

## Output

A structured JSON company profile containing fields such as company name, description, industry classification, employee count, headquarters location, founding date, website, and professional network metadata — equivalent to what would be returned by a URL-based Coresignal company lookup.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coresignal-company-profile-by-url-via-x402-orthogonal-com-5a974bc0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
