---
title: "Organization Enrichment"
method: GET
path: "/organizations/enrich"
tags: ["Enrichment"]
---

# Organization Enrichment

`GET /organizations/enrich`

This endpoint consumes **1 Apollo credit per organization** when an organization/company is matched or found. If Apollo doesn't find a matching organization, the request consumes **0 credits**. Learn more about [API pricing and credits](https://docs.apollo.io/docs/api-pricing).

<a href="https://knowledge.apollo.io/hc/en-us/articles/33699917233293-Enrichment-Overview" target="_blank">Enrichment</a> is when you refresh existing records so your prospecting data is up-to-date.<br><br>Use the Organization Enrichment endpoint to enrich data for one company. To enrich data for up to ten companies with a single API call, use the <a href="https://docs.apollo.io/reference/bulk-organization-enrichment">Bulk Organization Enrichment endpoint</a> instead.<br><br>You can match the company to enrich by domain, LinkedIn URL, name, and/or website. At least one of these is required, and providing more than one improves match accuracy.<br><br>Enriched data potentially includes industry information, revenue, employee counts, funding round details, corporate phone numbers, locations, language counts, retail-location counts, and organization hierarchy data. The <code>owned_by_organization</code> field identifies the immediate parent, <code>owned_by_chain</code> lists parent organization IDs from the immediate parent to the ultimate parent, and <code>ultimate_parent_organization</code> identifies the topmost parent. The <code>suborganizations</code> array includes each direct subsidiary's industries, estimated employee count, and country when available.

## Query parameters

- `domain` string
- `linkedin_url` string
- `name` string
- `website` string

## Response `200`

200

- object
  - `organization` object
    - `id` string
    - `name` string
    - `website_url` string
    - `blog_url` unknown
    - `angellist_url` unknown
    - `linkedin_url` string
    - `twitter_url` string
    - `facebook_url` string
    - `primary_phone` object
    - `languages` string[] — The distinct languages associated with the organization.
    - `num_languages` integer — The number of distinct values in `languages`.
    - `alexa_ranking` integer
    - `phone` unknown
    - `linkedin_uid` string
    - `founded_year` integer
    - `publicly_traded_symbol` unknown
    - `publicly_traded_exchange` unknown
    - `logo_url` string
    - `crunchbase_url` unknown
    - `primary_domain` string
    - `industry` string
    - `keywords` string[]
    - `estimated_num_employees` integer
    - `industries` string[]
    - `secondary_industries` unknown[]
      - unknown
    - `snippets_loaded` boolean
    - `industry_tag_id` string
    - `industry_tag_hash` object
      - `information technology & services` string
    - `retail_location_count` integer
    - `num_retail_locations` integer — The number of retail company locations that aren't marked as closed.
    - `raw_address` string
    - `street_address` string
    - `city` string
    - `state` string
    - `postal_code` string
    - `country` string
    - `owned_by_organization_id` unknown
    - `owned_by_organization` object — The immediate parent organization. Omitted when the organization has no parent.
      - `id` string
      - `name` string
      - `website_url` string
    - `owned_by_chain` string[] — Apollo organization IDs in the ownership chain, ordered from the immediate parent to the ultimate parent. Omitted when the organization has no ownership chain.
    - `ultimate_parent_organization` object — The topmost parent in the ownership chain. Omitted when the organization has no ultimate parent.
      - `id` string
      - `name` string
      - `website_url` string
    - `seo_description` string
    - `short_description` string
    - `suborganizations` object[] — Subsidiaries directly owned by the organization.
      - `id` string
      - `name` string
      - `website_url` string
      - `industries` string[]
      - `estimated_num_employees` integer
      - `country` string
    - `num_suborganizations` integer — The number of subsidiaries directly owned by the organization.
    - `annual_revenue_printed` string
    - `annual_revenue` integer
    - `total_funding` integer
    - `total_funding_printed` string
    - `latest_funding_round_date` string
    - `latest_funding_stage` string
    - `funding_events` object[]
      - `id` string
      - `date` string
      - `news_url` unknown
      - `type` string
      - `investors` string
      - `amount` string
      - `currency` string
    - `technology_names` string[]
    - `current_technologies` object[]
      - `uid` string
      - `name` string
      - `category` string
    - `org_chart_root_people_ids` string[]
    - `org_chart_sector` string
    - `org_chart_removed` boolean
    - `org_chart_show_department_filter` boolean
    - `account_id` string
    - `account` object
      - `id` string
      - `domain` string
      - `name` string
      - `team_id` string
      - `organization_id` string
      - `account_stage_id` unknown
      - `source` string
      - `original_source` string
      - `creator_id` unknown
      - `owner_id` string
      - `created_at` string
      - `phone` string
      - `phone_status` string
      - `hubspot_id` unknown
      - `salesforce_id` unknown
      - `crm_owner_id` unknown
      - `parent_account_id` unknown
      - `linkedin_url` unknown
      - `sanitized_phone` string
      - `account_playbook_statuses` unknown[]
        - unknown
      - `account_rule_config_statuses` unknown[]
        - unknown
      - `existence_level` string
      - `label_ids` string[]
      - `typed_custom_fields` object
      - `custom_field_errors` object
      - `modality` string
      - `source_display_name` string
      - `crm_record_url` unknown
      - `intent_strength` unknown
      - `show_intent` boolean
      - `has_intent_signal_account` boolean
      - `intent_signal_account` unknown
    - `departmental_head_count` object
      - `engineering` integer
      - `operations` integer
      - `support` integer
      - `marketing` integer
      - `human_resources` integer
      - `sales` integer
      - `finance` integer
      - `consulting` integer
      - `legal` integer
      - `arts_and_design` integer
      - `accounting` integer
      - `business_development` integer
      - `information_technology` integer
      - `education` integer
      - `media_and_commmunication` integer
      - `product_management` integer
      - `entrepreneurship` integer
      - `data_science` integer
      - `administrative` integer
    - `organization_headcount_six_month_growth` number — The percentage change in the company's total headcount over the previous 6 months. Returns `null` when growth data is not available for the company.
    - `organization_headcount_twelve_month_growth` number — The percentage change in the company's total headcount over the previous 12 months. Returns `null` when growth data is not available for the company.
    - `organization_headcount_twenty_four_month_growth` number — The percentage change in the company's total headcount over the previous 24 months. Returns `null` when growth data is not available for the company.

## Other responses

- `401` — 401
- `403` — 403
- `422` — 422
- `429` — 429

---

[API](https://skmtc.dev/apollo/apis/apollo-rest-api.md) · [All operations](https://skmtc.dev/apollo/apis/apollo-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/apollo/apollo-rest-api/revisions/c715a05fa6e2/schema)
