Coresignal · Arazzo Workflow

Coresignal Company to Employees Enrichment

Version 1.0.0

Find a company, then find and collect a key employee currently working at that company.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Agentic SearchB2B DataCompaniesCompany DataData as a ServiceElasticsearchEmployee DataEmployeesEnrichmentFirmographicsJob PostingsJobLead GenerationPeople DataSales IntelligenceTalent IntelligenceWeb DataArazzoWorkflows

Provider

coresignal

Workflows

company-to-employees
Resolve a company and collect a key employee working there.
Searches and collects a company, then searches employees by that company name and collects the top matching employee profile.
4 steps inputs: apikey, country, employee_title, name outputs: companyName, employeeFullName, employeeTitle
1
searchCompanies
Search company records by name and country. Returns an array of matching Coresignal company IDs.
2
collectCompany
Retrieve the full company record to obtain the canonical company name used to filter employees.
3
searchEmployees
searchEmployeesByFilter
Search employee records whose active employer matches the resolved company name and whose current title matches the requested title.
4
collectEmployee
collectEmployee
Retrieve the full enriched profile for the first employee matching the resolved company and title.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Coresignal Company to Employees Enrichment
  summary: Find a company, then find and collect a key employee currently working at that company.
  description: >-
    A multi-source pattern that bridges the Company and Employee APIs. The
    workflow filters the Multi-source Company API to resolve a target company,
    collects that company's full record to obtain its canonical name, then uses
    that name as the active-employer filter against the Multi-source Employee API
    and collects the full profile of the first matching employee. Every step
    spells out its request inline, including the apikey authentication header and
    the search filter bodies, so the flow can be read and executed without
    opening the underlying OpenAPI descriptions.
  version: 1.0.0
sourceDescriptions:
- name: companyApi
  url: ../openapi/_original/coresignal-multi-source-company-api-openapi.yml
  type: openapi
- name: employeeApi
  url: ../openapi/_original/coresignal-multi-source-employee-api-openapi.yml
  type: openapi
workflows:
- workflowId: company-to-employees
  summary: Resolve a company and collect a key employee working there.
  description: >-
    Searches and collects a company, then searches employees by that company
    name and collects the top matching employee profile.
  inputs:
    type: object
    required:
    - apikey
    properties:
      apikey:
        type: string
        description: Coresignal API key sent in the apikey header.
      name:
        type: string
        description: Company name to resolve against the Company API.
      country:
        type: string
        description: Country to filter the company search on.
      employee_title:
        type: string
        description: Title to filter employees on within the resolved company.
  steps:
  - stepId: searchCompanies
    description: >-
      Search company records by name and country. Returns an array of matching
      Coresignal company IDs.
    operationId: searchCompaniesByFilter
    parameters:
    - name: apikey
      in: header
      value: $inputs.apikey
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        country: $inputs.country
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      topCompanyId: $response.body#/0
  - stepId: collectCompany
    description: >-
      Retrieve the full company record to obtain the canonical company name used
      to filter employees.
    operationId: collectCompany
    parameters:
    - name: apikey
      in: header
      value: $inputs.apikey
    - name: id
      in: path
      value: $steps.searchCompanies.outputs.topCompanyId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      companyName: $response.body#/name
      employeesCount: $response.body#/employees_count
  - stepId: searchEmployees
    description: >-
      Search employee records whose active employer matches the resolved company
      name and whose current title matches the requested title.
    operationId: searchEmployeesByFilter
    parameters:
    - name: apikey
      in: header
      value: $inputs.apikey
    requestBody:
      contentType: application/json
      payload:
        active_experience_company_name: $steps.collectCompany.outputs.companyName
        active_experience_title: $inputs.employee_title
        country: $inputs.country
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      topEmployeeId: $response.body#/0
  - stepId: collectEmployee
    description: >-
      Retrieve the full enriched profile for the first employee matching the
      resolved company and title.
    operationId: collectEmployee
    parameters:
    - name: apikey
      in: header
      value: $inputs.apikey
    - name: id
      in: path
      value: $steps.searchEmployees.outputs.topEmployeeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      employeeId: $response.body#/id
      fullName: $response.body#/full_name
      title: $response.body#/title
  outputs:
    companyName: $steps.collectCompany.outputs.companyName
    employeeFullName: $steps.collectEmployee.outputs.fullName
    employeeTitle: $steps.collectEmployee.outputs.title

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/coresignal-company-to-employees-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.