Coresignal Search API

Search and filter company records.

Operations 2

POST /search/filter Search Companies (filter) #
POST /search/es_dsl Search Companies (Elasticsearch DSL) #

Documentation

Specifications

Other Resources

🔗
DataDictionary
https://docs.coresignal.com/multi-source-company-api/data-dictionary
🔗
Sample
https://docs.coresignal.com/multi-source-company-api/sample
🔗
SearchFilters
https://docs.coresignal.com/multi-source-company-api/search-filters
🔗
ElasticsearchDSL
https://docs.coresignal.com/multi-source-company-api/search-with-es-dsl
🔗
Collect
https://docs.coresignal.com/multi-source-company-api/collect
🔗
BulkCollect
https://docs.coresignal.com/multi-source-company-api/bulk-collect
🔗
Webhooks
https://docs.coresignal.com/multi-source-company-api/subscriptions
🔗
Rules
https://raw.githubusercontent.com/api-evangelist/coresignal/refs/heads/main/rules/coresignal-multi-source-company-api-rules.yml
🔗
DataDictionary
https://docs.coresignal.com/multi-source-employee-api/data-dictionary
🔗
Sample
https://docs.coresignal.com/multi-source-employee-api/sample
🔗
SearchFilters
https://docs.coresignal.com/multi-source-employee-api/search-filters
🔗
ElasticsearchDSL
https://docs.coresignal.com/multi-source-employee-api/search-with-es-dsl
🔗
Collect
https://docs.coresignal.com/multi-source-employee-api/collect
🔗
BulkCollect
https://docs.coresignal.com/multi-source-employee-api/bulk-collect
🔗
Webhooks
https://docs.coresignal.com/multi-source-employee-api/subscriptions
🔗
Rules
https://raw.githubusercontent.com/api-evangelist/coresignal/refs/heads/main/rules/coresignal-multi-source-employee-api-rules.yml
🔗
DataDictionary
https://docs.coresignal.com/multi-source-jobs-api/data-dictionary
🔗
Sample
https://docs.coresignal.com/multi-source-jobs-api/sample
🔗
SearchFilters
https://docs.coresignal.com/multi-source-jobs-api/search-filters
🔗
ElasticsearchDSL
https://docs.coresignal.com/multi-source-jobs-api/search-with-es-dsl
🔗
Collect
https://docs.coresignal.com/multi-source-jobs-api/collect
🔗
Rules
https://raw.githubusercontent.com/api-evangelist/coresignal/refs/heads/main/rules/coresignal-multi-source-jobs-api-rules.yml

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/coresignal-search-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

coresignal-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Coresignal Multi-source Company Collect Search API
  version: '2.0'
  description: The Multi-source Company API returns enriched company records combining public web data sources, deduplicated and standardized with 500+ fields. Search uses Elasticsearch DSL queries; Collect returns full records by ID. Authentication uses the apikey HTTP header.
  contact:
    name: Coresignal Support
    url: https://coresignal.com/contact/
  license:
    name: Proprietary
    url: https://coresignal.com/terms-and-conditions/
servers:
- url: https://api.coresignal.com/cdapi/v2/multi_source_company
  description: Coresignal Multi-source Company API production server
security:
- apiKey: []
tags:
- name: Search
  description: Search and filter company records.
paths:
  /search/filter:
    post:
      operationId: searchCompaniesByFilter
      summary: Search Companies (filter)
      description: Search company records using a structured filter object. Returns matching record IDs.
      tags:
      - Search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyFilter'
      responses:
        '200':
          description: Array of matching company record IDs
          content:
            application/json:
              schema:
                type: array
                items:
                  type: integer
                  format: int64
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          $ref: '#/components/responses/CreditsExhausted'
        '429':
          $ref: '#/components/responses/RateLimited'
  /search/es_dsl:
    post:
      operationId: searchCompaniesByEsDsl
      summary: Search Companies (Elasticsearch DSL)
      description: Search company records using a full Elasticsearch DSL query body.
      tags:
      - Search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              description: Elasticsearch DSL query object
      responses:
        '200':
          description: Array of matching company record IDs
          content:
            application/json:
              schema:
                type: array
                items:
                  type: integer
                  format: int64
components:
  responses:
    CreditsExhausted:
      description: API credits exhausted for the account
    Unauthorized:
      description: Missing or invalid apikey header
    RateLimited:
      description: Rate limit exceeded
  schemas:
    CompanyFilter:
      type: object
      properties:
        name:
          type: string
        industry:
          type: string
        size:
          type: string
        country:
          type: string
        region:
          type: string
        founded_from:
          type: integer
        founded_to:
          type: integer
        employees_count_from:
          type: integer
        employees_count_to:
          type: integer
        technologies:
          type: array
          items:
            type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey