IntroductionAuthenticationPaginationRate Limit

Search endpoints

Job Search POSTCompany Search POSTTechnographics POST

Account endpoints

Get Credit Balance GETGet Credits Consumption GET

Other

Get Companies Per Company Country Code GETGet Industries GETGet Jobs And Companies Per Job Country Code GETGet Geographic Locations GETList Technology Categories GETList Technologies GETGet Industries GET
TheirStack TheirStack Logo
DocumentationAPI ReferenceWebhooksDatasets
Catalog

Get Industries

This endpoint lets you: - List all the industries and their codes - See how many jobs and companies we have per industry - Search for an industry

Calls to this endpoint don't cost you credits.

Our industries catalogue comes from LinkedIn Industry Codes V2

GET
/v0/catalog/industries

Query Parameters

  • industry
    stringnullable
    default: ""

    Name of an industry, case-insensitive. Will return industries that contain the given string either in their name, hierarchy or description

  • page
    integer
    0 <= valuedefault: 0

    Page number.

  • limit
    integer
    1 <= valuedefault: 25

    Number of results per page

  • Response Body

    application/json

    application/json

    curl -X GET "https://api.theirstack.com/v0/catalog/industries"
    {
      "data": [
        {
          "industry_id": 0,
          "industry": "string",
          "hierarchy": "string",
          "description": "string",
          "parent_id": 0,
          "companies": 0,
          "jobs": 0
        }
      ],
      "metadata": {
        "total_results": 2034
      }
    }
    {
      "detail": [
        {
          "loc": [
            "string"
          ],
          "msg": "string",
          "type": "string"
        }
      ]
    }

    How is this guide?

    Last updated on

    Get Companies Per Company Country Code GET

    This endpoint will return all country codes and the number of companies whose HQ is in that country.

    Get Jobs And Companies Per Job Country Code GET

    This endpoint will return all the country codes and the number of jobs whose location's country code is the given one, and the number of companies with jobs in that country.

    curl -X GET "https://api.theirstack.com/v0/catalog/industries"