Enrich Company Followers/Count Estimation API

The Company Followers/Count Estimation API from Enrich — 2 operation(s) for company followers/count estimation.

Operations 2

POST /count-estimate Start count estimation #
GET /count-estimate/{batchId} Get estimation status/results #

Documentation

Specifications

Other Resources

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/enrich-so-company-followers-count-estimation-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

enrich-so-company-followers-count-estimation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Enrich So Company Followers/Count Estimation API
  version: '3.0'
  contact:
    name: Enrich
    url: https://www.enrich.so
  termsOfService: https://www.enrich.so/terms-of-service
  description: 'Operations tagged Company Followers/Count Estimation across 2 of this provider''s published API definitions: enrich-so-company-intelligence-api-openapi.yml, enrich-so-v3-harvested-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://dev.enrich.so/api/v3
  description: Enrich API v3 production base URL, published at https://doc.enrich.so/api-reference-1951025m0
tags:
- name: Company Followers/Count Estimation
paths:
  /count-estimate:
    post:
      summary: Start count estimation
      deprecated: false
      description: '> **Access required** — This endpoint is available to approved accounts only. [Contact us](https://enrich.so) to request access.


        Starts an asynchronous count estimation job. Returns the estimated number of followers matching your filters, with optional breakdowns by department and seniority.


        **Cost:** 100 credits (fixed). Cached results for the same company + filters within 24 hours are free.


        **Results:** Poll the status endpoint to get results. Typically completes within 30–60 seconds.

        '
      operationId: startCountEstimate
      tags:
      - Company Followers/Count Estimation
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CountEstimateRequest'
            example:
              companyUrl: https://linkedin.com/company/stripe
              departments:
              - Engineering
              - Sales
      responses:
        '200':
          description: Count estimation job started successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StartCountEstimateResponse'
              example:
                success: true
                data:
                  batchId: 665b2a3f4c5d6e0013fgh002
                  status: pending
                  message: Count estimation job started. Results typically available within 30-60 seconds.
                meta:
                  requestId: 664f2b3c9a1e4d0012abcdef
                  creditsUsed: 100
                  creditsRemaining: 24900
          headers: {}
        '400':
          description: Something is wrong with the request — check the `detail` field for specifics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/validation-error
                title: Validation Error
                status: 400
                detail: body/companyUrl Invalid url
                instance: /requests/3fa85f64-5717-4562-b3fc-2c963f66afa6
          headers: {}
        '401':
          description: Your API key is missing or invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/unauthorized
                title: Unauthorized
                status: 401
                detail: The API key provided is invalid or has been revoked
          headers: {}
        '402':
          description: You don't have enough credits for this request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/insufficient-credits
                title: Insufficient Credits
                status: 402
                detail: 'Not enough credits. Required: 100, available: 3'
          headers: {}
        '429':
          description: You've sent too many requests — wait and try again
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/rate-limit-exceeded
                title: Too Many Requests
                status: 429
                detail: Rate limit exceeded. Please retry after 30 seconds.
          headers:
            Retry-After:
              required: false
              description: ''
              schema:
                type: string
            X-RateLimit-Limit:
              required: false
              description: ''
              schema:
                type: string
            X-RateLimit-Remaining:
              required: false
              description: ''
              schema:
                type: string
            X-RateLimit-Reset:
              required: false
              description: ''
              schema:
                type: string
        '500':
          description: Something went wrong on our end — try again in a moment
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/internal-error
                title: Internal Server Error
                status: 500
                detail: An unexpected error occurred. Please try again later.
          headers: {}
      security:
      - ApiKeyHeader: []
      x-run-in-apidog: https://app.apidog.com/web/project/1189032/apis/api-27728074-run
    servers:
    - url: https://dev.enrich.so/api/v3
      description: Enrich API v3 production base URL, published at https://doc.enrich.so/api-reference-1951025m0
  /count-estimate/{batchId}:
    get:
      summary: Get estimation status/results
      deprecated: false
      description: '> **Access required** — This endpoint is available to approved accounts only. [Contact us](https://enrich.so) to request access.


        Check the status of a count estimation job and retrieve results when complete.


        **Cost:** Free — polling never costs credits.


        **Refunds:** If the job fails within 7 days, the 100 credits are refunded automatically on the next status check.

        '
      operationId: getCountEstimateStatus
      tags:
      - Company Followers/Count Estimation
      parameters:
      - name: batchId
        in: path
        description: The batch identifier returned when you started the estimation
        required: true
        example: 665b2a3f4c5d6e0013fgh002
        schema:
          type: string
          minLength: 1
      responses:
        '200':
          description: Estimation status and results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CountEstimateStatusResponse'
              example:
                success: true
                data:
                  batchId: 665b2a3f4c5d6e0013fgh002
                  status: completed
                  companyUrl: https://linkedin.com/company/stripe
                  message: Count estimation complete. Found 8542 followers matching your criteria.
                  createdAt: '2025-06-03T14:30:00.000Z'
                  completedAt: '2025-06-03T14:31:15.000Z'
                  data:
                    totalCount: 8542
                    functionBreakdown:
                    - functionName: Engineering
                      functionId: '8'
                      count: 3200
                      percentage: 37.5
                    - functionName: Sales
                      functionId: '25'
                      count: 1850
                      percentage: 21.7
                    filtersApplied:
                      departments:
                      - Engineering
                      - Sales
                meta:
                  requestId: 664f2b3c9a1e4d0012abcdef
          headers: {}
        '401':
          description: Your API key is missing or invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/unauthorized
                title: Unauthorized
                status: 401
                detail: The API key provided is invalid or has been revoked
          headers: {}
        '404':
          description: The resource you requested doesn't exist or doesn't belong to your organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/not-found
                title: Not Found
                status: 404
                detail: No batch found with that ID
          headers: {}
        '429':
          description: You've sent too many requests — wait and try again
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
              example:
                type: https://dev.enrich.so/errors/rate-limit-exceeded
                title: Too Many Requests
                status: 429
                detail: Rate limit exceeded. Please retry after 30 seconds.
          headers:
            Retry-After:
              required: false
              description: ''
              schema:
                type: string
            X-RateLimit-Limit:
              required: false
              description: ''
              schema:
                type: string
            X-RateLimit-Remaining:
              required: false
              description: ''
              schema:
                type: string
            X-RateLimit-Reset:
              required: false
              description: ''
              schema:
                type: string
      security:
      - ApiKeyHeader: []
      x-run-in-apidog: https://app.apidog.com/web/project/1189032/apis/api-27728075-run
    servers:
    - url: https://dev.enrich.so/api/v3
      description: Enrich API v3 production base URL, published at https://doc.enrich.so/api-reference-1951025m0
components:
  schemas:
    CountEstimateResultData:
      type: object
      required:
      - totalCount
      properties:
        totalCount:
          type: integer
          description: Total estimated follower count
        functionBreakdown:
          type: array
          items:
            $ref: '#/components/schemas/FunctionBreakdownItem'
          description: Breakdown by department/function (if departments filter was applied)
          nullable: true
        seniorityBreakdown:
          type: array
          items:
            $ref: '#/components/schemas/SeniorityBreakdownItem'
          description: Breakdown by seniority level (if levels filter was applied)
          nullable: true
        filtersApplied:
          type: object
          properties:
            countries:
              type: array
              items:
                type: string
            states:
              type: array
              items:
                type: string
              description: State/province filters applied
            jobTitles:
              type: array
              items:
                type: string
            departments:
              type: array
              items:
                type: string
            levels:
              type: array
              items:
                type: string
          description: Filters applied to the estimation
          nullable: true
    SeniorityBreakdownItem:
      type: object
      required:
      - seniorityLevel
      - seniorityId
      - count
      - percentage
      properties:
        seniorityLevel:
          type: string
          description: Seniority level name (e.g., Director)
        seniorityId:
          type: string
          description: Seniority level ID
        count:
          type: integer
          description: Count of people at this seniority
        percentage:
          type: number
          description: Percentage of total
    ErrorEnvelope:
      type: object
      description: RFC 9457 Problem Details error response.
      required:
      - type
      - title
      - status
      properties:
        type:
          type: string
          format: uri
          description: URI reference that identifies the problem type.
          examples:
          - https://dev.enrich.so/errors/validation-error
        title:
          type: string
          description: Short, human-readable summary of the problem.
          examples:
          - Validation Error
        status:
          type: integer
          description: HTTP status code.
          examples:
          - 400
        detail:
          type: string
          description: Human-readable explanation specific to this occurrence.
          examples:
          - body/email Invalid email
        instance:
          type: string
          description: URI reference that identifies the specific occurrence.
          examples:
          - /requests/3fa85f64-5717-4562-b3fc-2c963f66afa6
    FunctionBreakdownItem:
      type: object
      required:
      - functionName
      - functionId
      - count
      - percentage
      properties:
        functionName:
          type: string
          description: Job function name (e.g., Engineering)
        functionId:
          type: string
          description: Job function ID
        count:
          type: integer
          description: Count of people in this function
        percentage:
          type: number
          description: Percentage of total
        seniorityBreakdown:
          type: array
          items:
            $ref: '#/components/schemas/SeniorityBreakdownItem'
          description: Nested seniority breakdown within this department
          nullable: true
    CountEstimateStatusResponse:
      type: object
      required:
      - success
      - data
      properties:
        success:
          type: boolean
          const: true
        data:
          $ref: '#/components/schemas/CountEstimateStatusData'
        meta:
          type: object
          properties:
            requestId:
              type: string
            creditsRefunded:
              type: number
              description: Credits refunded (100, if job failed)
            creditsRemaining:
              type: number
              description: Remaining credit balance
    CountEstimateRequest:
      type: object
      required:
      - companyUrl
      properties:
        companyUrl:
          type: string
          format: uri
          description: The LinkedIn company URL to estimate follower count for
          examples:
          - https://linkedin.com/company/stripe
        countries:
          type: array
          items:
            type: string
            enum:
            - Argentina
            - Australia
            - Austria
            - Bangladesh
            - Belgium
            - Brazil
            - Canada
            - Chile
            - China
            - Colombia
            - Czech Republic
            - Denmark
            - Egypt
            - Finland
            - France
            - Germany
            - Ghana
            - Greece
            - Hong Kong SAR
            - Hungary
            - India
            - Indonesia
            - Ireland
            - Israel
            - Italy
            - Japan
            - Kenya
            - Luxembourg
            - Malaysia
            - Mexico
            - Morocco
            - Nepal
            - Netherlands
            - New Zealand
            - Nigeria
            - Norway
            - Pakistan
            - Peru
            - Philippines
            - Poland
            - Portugal
            - Romania
            - Russia
            - Saudi Arabia
            - Singapore
            - South Africa
            - South Korea
            - Spain
            - Sri Lanka
            - Sweden
            - Switzerland
            - Thailand
            - Turkey
            - Ukraine
            - United Arab Emirates
            - United Kingdom
            - United States
            - Vietnam
          description: Filter by country names (57 supported countries)
        states:
          type: array
          items:
            type: string
            enum:
            - Aargau
            - Abruzzo
            - Abu Dhabi
            - Abuja
            - Aichi
            - Ajman
            - Alabama
            - Alaska
            - Alberta
            - Alexandria
            - Amazonas
            - Andalusia
            - Andhra Pradesh
            - Ankara
            - Antalya
            - Antioquia
            - Aragon
            - Arequipa
            - Arizona
            - Arkansas
            - Arunachal Pradesh
            - Asir
            - Assam
            - Asturias
            - Atlántico
            - Attica
            - Auckland
            - Australian Capital Territory
            - Auvergne-Rhône-Alpes
            - Baden-Württemberg
            - Bahia
            - Baja California
            - Balearic Islands
            - Bali
            - Balochistan
            - Bangkok
            - Basel-Stadt
            - Basque Country
            - Bavaria
            - Beijing
            - Berlin
            - Bern
            - Bihar
            - Biobío
            - Bogotá
            - Bourgogne-Franche-Comté
            - Braga
            - Brandenburg
            - Bremen
            - Bretagne
            - British Columbia
            - Brussels
            - Bucharest
            - Budapest
            - Buenos Aires
            - Bursa
            - Busan
            - Cairo
            - Calabarzon
            - Calabria
            - California
            - Campania
            - Canary Islands
            - Cantabria
            - Canterbury
            - Capital Region
            - Carinthia
            - Castile and León
            - Castilla–La Mancha
            - Catalonia
            - Ceará
            - Cebu
            - Central Denmark
            - Central District
            - Central Java
            - Central Macedonia
            - Central Province
            - Central Singapore
            - Centre-Val de Loire
            - Chandigarh
            - Chhattisgarh
            - Chiang Mai
            - Chiba
            - Chihuahua
            - Chittagong
            - Cluj
            - Colorado
            - Connecticut
            - Corse
            - Cusco
            - Córdoba
            - Da Nang
            - Daegu
            - Daejeon
            - Davao
            - Delaware
            - Delhi
            - Dhaka
            - District of Columbia
            - Distrito Federal
            - Drenthe
            - Dubai
            - East Java
            - Eastern Cape
            - Eastern Province
            - Emilia-Romagna
            - England
            - Espírito Santo
            - Extremadura
            - Flanders
            - Flevoland
            - Florida
            - Free State
            - Friesland
            - Friuli Venezia Giulia
            - Fujairah
            - Fujian
            - Fukuoka
            - Galicia
            - Gauteng
            - Gelderland
            - Geneva
            - Georgia
            - Giza
            - Goa
            - Goiás
            - Grand Est
            - Groningen
            - Guanajuato
            - Guangdong
            - Gujarat
            - Gwangju
            - Gyeonggi
            - Haifa
            - Hamburg
            - Hanoi
            - Haryana
            - Hauts-de-France
            - Hawaii
            - Hesse
            - Himachal Pradesh
            - Ho Chi Minh City
            - Hokkaido
            - Hong Kong Island
            - Hubei
            - Hunan
            - Hyogo
            - Iași
            - Idaho
            - Illinois
            - Incheon
            - Indiana
            - Iowa
            - Islamabad
            - Istanbul
            - Izmir
            - Jakarta
            - Jalisco
            - Jeju
            - Jerusalem
            - Jharkhand
            - Jiangsu
            - Johor
            - Kanagawa
            - Kano
            - Kansas
            - Karnataka
            - Kentucky
            - Kerala
            - Khyber Pakhtunkhwa
            - Kisumu
            - Kowloon
            - Kuala Lumpur
            - KwaZulu-Natal
            - Kyoto
            - La Rioja
            - Lagos
            - Lazio
            - Leinster
            - Liguria
            - Lima
            - Limburg
            - Limpopo
            - Lisbon
            - Lombardy
            - Louisiana
            - Lower Austria
            - Lower Saxony
            - Lower Silesian
            - Lucerne
            - Madhya Pradesh
            - Madinah
            - Madrid
            - Maharashtra
            - Maine
            - Makkah
            - Manipur
            - Manitoba
            - Maranhão
            - Marche
            - Maryland
            - Masovian
            - Massachusetts
            - Mato Grosso
            - Mato Grosso do Sul
            - Mecklenburg-Vorpommern
            - Meghalaya
            - Mendoza
            - Metro Manila
            - Mexico City
            - Michigan
            - Minas Gerais
            - Minnesota
            - Mississippi
            - Missouri
            - Mizoram
            - Mombasa
            - Montana
            - Moravia-Silesia
            - Moscow
            - Mpumalanga
            - Munster
            - Murcia
            - Nagaland
            - Nairobi
            - Navarre
            - Nebraska
            - Nevada
            - New Brunswick
            - New Hampshire
            - New Jersey
            - New Mexico
            - New South Wales
            - New Territories
            - New York
            - Newfoundland and Labrador
            - Nonthaburi
            - Normandie
            - North Brabant
            - North Carolina
            - North Dakota
            - North Denmark
            - North Holland
            - North Rhine-Westphalia
            - North West
            - North-East Singapore
            - North-West Singapore
            - Northern Cape
            - Northern Ireland
            - Northern Territory
            - Northwest Territories
            - Nouvelle-Aquitaine
            - Nova Scotia
            - Novosibirsk Oblast
            - Nuevo León
            - Nunavut
            - Occitanie
            - Odisha
            - Ohio
            - Oklahoma
            - Ontario
            - Oregon
            - Osaka
            - Oslo
            - Overijssel
            - Oyo
            - Paraná
            - Pará
            - Pays de la Loire
            - Penang
            - Pennsylvania
            - Pernambuco
            - Pest
            - Phuket
            - Piedmont
            - Pirkanmaa
            - Pomeranian
            - Porto
            - Prague
            - Prince Edward Island
            - Provence-Alpes-Côte d'Azur
            - Puebla
            - Puglia
            - Punjab
            - Qassim
            - Quebec
            - Queensland
            - Querétaro
            - Quintana Roo
            - Rajasthan
            - Rajshahi
            - Ras Al Khaimah
            - Rhineland-Palatinate
            - Rhode Island
            - Rio Grande do Sul
            - Rio de Janeiro
            - Rivers
            - Riyadh
            - Rogaland
            - Saarland
            - Sabah
            - Saint Petersburg
            - Saitama
            - Salzburg
            - Santa Catarina
            - Santa Fe
            - Santiago Metropolitan
            - Sarawak
            - Sardinia
            - Saskatchewan
            - Saxony
            - Saxony-Anhalt
            - Schleswig-Holstein
            - Scotland
            - Selangor
            - Seoul
            - Shandong
            - Shanghai
            - Sharjah
            - Sichuan
            - Sicily
            - Sikkim
            - Silesian
            - Sindh
            - Skåne
            - South Australia
            - South Carolina
            - South Dakota
            - South Holland
            - South-East Singapore
            - South-West Singapore
            - Southern Denmark
            - Southern Province
            - Southwest Finland
            - St. Gallen
            - Stockholm
            - Styria
            - Sverdlovsk Oblast
            - São Paulo
            - Tamil Nadu
            - Tasmania
            - Tel Aviv
            - Telangana
            - Tennessee
            - Texas
            - Thuringia
            - Ticino
            - Timiș
            - Tokyo
            - Trentino-Alto Adige
            - Tripura
            - Trøndelag
            - Tuscany
            - Tyrol
            - Ulsan
            - Ulster
            - Umbria
            - Upper Austria
            - Uppsala
            - Utah
            - Utrecht
            - Uttar Pradesh
            - Uttarakhand
            - Uusimaa
            - Valencia
            - Valle del Cauca
            - Valparaíso
            - Vaud
            - Veneto
            - Veracruz
            - Vermont
            - Vestland
            - Victoria
            - Vienna
            - Viken
            - Virginia
            - Vorarlberg
            - Västra Götaland
            - Waikato
            - Wales
            - Wallonia
            - Washington
            - Wellington
            - West Bengal
            - West Java
            - West Virginia
            - Western Australia
            - Western Cape
            - Western Province
            - Wisconsin
            - Wyoming
            - Yucatán
            - Yukon
            - Zealand
            - Zeeland
            - Zhejiang
            - Zurich
            - Île-de-France
            - Östergötland
            - Łódź
          description: Filter by state/province/region names. 401 states across 48 countries supported. When states are provided, the parent country is automatically inferred.
        jobTitles:
          type: array
          items:
            type: string
            enum:
            - Account Coordinator
            - Account Director
            - Account Executive
            - Account Manager
            - Account Specialist
            - Accountant
            - Accounting Intern
            - Acting Chief Executive Officer
            - Acting Chief Financial Officer
            - Administrative Assistant
            - Administrative Assistant to Chief Executive Officer
            - Administrative Coordinator
            - Administrative Specialist
            - Administrator
            - Advisor
            - Advisor to Chief Executive Officer
            - Agency Owner
            - Analyst
            - Analytical Scientist
            - Android Developer
            - Application Developer
            - Area Manager
            - Art Director
            - Assistant
            - Assistant Chief Executive
            - Assistant Director
            - Assistant Head
            - Assistant Manager
            - Assistant Professor
            - Assistant Scientist
            - Assistant Vice President
            - Assistant to Chief Executive Officer
            - Assistant to Owner
            - Assistant to Vice President
            - Assistant to the Chief Financial Officer
            - Assistant to the President
            - Associate
            - Associate Director
            - Associate Founder
            - Associate Researcher
            - Associate Scientist
            - Attorney
            - Audit Intern
            - Bank Employee
            - Bar Manager
            - Barista
            - Bartender
            - Biologist
            - Biomedical Equipment Technician
            - Biomedical Scientist
            - Blogger
            - Board Member
            - Bookkeeper
            - Branch Manager
            - Branch Owner
            - Business Analyst
            - Business Consultant
            - Business Development Manager
            - Business Development Specialist
            - Business Intelligence Developer
            - Business Lead
            - Business Manager
            - Business Process Owner
            - Business Specialist
            - Business System Analyst
            - Business Unit Manager
            - Buyer
            - Carpenter
            - Cashier
            - Catering Specialist
            - Certified Nursing Assistant
            - Certified Specialist
            - Chemist
            - Chief Administrative Officer
            - Chief Architect
            - Chief Executive Director
            - Chief Executive Officer
            - Chief Financial Officer
            - Chief Information Officer
            - Chief Marketing Officer
            - Chief Officer
            - Chief Operating Officer
            - Chief Scientist
            - Chief Specialist
            - Chief Technology Officer
            - Chief of Development
            - Chief of Staff
            - Child And Youth Worker
            - Child Care Specialist
            - Civil Engineer
            - Civil Servant
            - Cleaning Specialist
            - Clerk
            - Client Services Representative
            - Clinical Laboratory Scientist
            - Clinical Scientist
            - Co President
            - Co-Founder
            - Co-Owner
            - Communications Specialist
            - Computer Scientist
            - Construction Supervisor
            - Construction Worker
            - Consultant
            - Consulting Chief Financial Officer
            - Contract Specialist
            - Cook
            - Coordinator
            - Coordinator of Volunteers
            - Corporate Specialist
            - Creative Director
            - Credit Analyst
            - Crew
            - Crew Chief
            - Crew Member
            - Customer Service Representative
            - Customer Service Specialist
            - Data Analyst
            - Data Entry Clerk
            - Data Scientist
            - Data Specialist
            - Database Developer
            - Delivery Driver
            - Deputy Chief Executive Officer
            - Deputy Chief Financial Officer
            - Deputy Chief Technology Officer
            - Deputy Head
            - Design Engineer
            - Design Specialist
            - Designer
            - Developer
            - Development Intern
            - Development Scientist
            - Development Specialist
            - Digital Specialist
            - Director
            - Director General
            - Director of Business Development
            - Director of Communications
            - Director of Development
            - Director of Engineering
            - Director of Information Technology
            - Director of Operations
            - Director of Quality
            - Director of Sales Marketing
            - Director of Services
            - Director of Youth Ministry
            - Dishwasher
            - Disk Jockey
            - Division Chief Financial Officer
            - Doctor
            - Dotnet Developer
            - Driver
            - Early Childhood Educator
            - Editor
            - Editor in Chief
            - Editorial Intern
            - Electrical Engineer
            - Electrician
            - Employee
            - Engineer
            - Engineer Intern
            - Engineering Manager
            - Engineering Specialist
            - Environmental Scientist
            - Event Coordinator
            - Executive
            - Executive Assistant
            - Executive Assistant to Chief Executive Officer
            - Executive Assistant to Chief Financial Officer
            - Executive Director
            - Executive Vice President
            - Field Engineer
            - Field Specialist
            - Final Year Student
            - Finance Intern
            - Finance Manager
            - Finance Specialist
            - Financial Advisor
            - Financial Analyst
            - Financial Assistant
            - Financial Director
            - Food Server
            - Food Service Worker
            - Food Specialist
            - Foreperson
            - Former Owner
 

# --- truncated at 32 KB (93 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/enrich-so/refs/heads/main/openapi/enrich-so-company-followers-count-estimation-api-openapi.yml