Coresignal · Arazzo Workflow

Coresignal Company to Job Postings Enrichment

Version 1.0.0

Find a company, then find and collect an active job posting published by 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-jobs
Resolve a company and collect an active job posting it published.
Searches and collects a company, then searches jobs by that company name and collects the top matching active job posting.
4 steps inputs: apikey, country, job_title, name outputs: companyName, jobTitle, jobUrl
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 job postings.
3
searchJobs
Search active job posting records whose hiring company matches the resolved company name and whose title matches the requested title.
4
collectJob
Retrieve the full enriched job posting record for the first match published by the resolved company.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Coresignal Company to Job Postings Enrichment
  summary: Find a company, then find and collect an active job posting published by that company.
  description: >-
    A multi-source pattern that bridges the Company and Jobs 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 hiring-company filter against the Multi-source Jobs API and collects
    the full record of the first matching active job posting. 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: collectApi
  url: ../openapi/coresignal-collect-api-openapi.yml
  type: openapi
- name: searchApi
  url: ../openapi/coresignal-search-api-openapi.yml
  type: openapi
workflows:
- workflowId: company-to-jobs
  summary: Resolve a company and collect an active job posting it published.
  description: >-
    Searches and collects a company, then searches jobs by that company name and
    collects the top matching active job posting.
  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 and job searches on.
      job_title:
        type: string
        description: Job title to filter the company's postings on.
  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 job postings.
    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
  - stepId: searchJobs
    description: >-
      Search active job posting records whose hiring company matches the resolved
      company name and whose title matches the requested title.
    operationId: searchCompaniesByFilter
    parameters:
    - name: apikey
      in: header
      value: $inputs.apikey
    requestBody:
      contentType: application/json
      payload:
        company_name: $steps.collectCompany.outputs.companyName
        title: $inputs.job_title
        country: $inputs.country
        application_active: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      topJobId: $response.body#/0
  - stepId: collectJob
    description: >-
      Retrieve the full enriched job posting record for the first match published
      by the resolved company.
    operationId: collectCompany
    parameters:
    - name: apikey
      in: header
      value: $inputs.apikey
    - name: id
      in: path
      value: $steps.searchJobs.outputs.topJobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      jobId: $response.body#/id
      title: $response.body#/title
      url: $response.body#/url
  outputs:
    companyName: $steps.collectCompany.outputs.companyName
    jobTitle: $steps.collectJob.outputs.title
    jobUrl: $steps.collectJob.outputs.url

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-jobs-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.