> ## Documentation Index
> Fetch the complete documentation index at: https://docs.theswarm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Company Sample Data

> Example JSON response payload for a company record returned by the v3 Fetch Company endpoint.

The example below shows the full shape of a company record as returned by the [v3 Fetch Company](/docs/endpoints/v3/fetch-company) endpoint. Use it as a reference when wiring up your client code or mapping fields into your own data model.

For field-by-field descriptions, see the [Company Endpoint Overview](/docs/enrichment-data/company/overview).

<CodeGroup>
  ```json Company theme={null}
  {
    "id": "09d9c510-c9f6-4c6e-9e62-fe5fedbeda87",
    "company_info": {
      "id": "09d9c510-c9f6-4c6e-9e62-fe5fedbeda87",
      "name": "The Swarm",
      "canonical_name": "wearetheswarm",
      "alternative_names": [
        "Swarm Holdings, Inc.",
        "The Swarm",
        "The Network Relationship Management (NRM) Platform",
        "GTN Platform"
      ],
      "description": "The Swarm curates a rich dataset of 580M profiles with daily job changes, 100M companies with fundraising data, and a unique relationship mapping AI engine for builders and investors.\n\nInterested in exploring? Chat with our new AI CEO at theswarm.com/ai-ceo",
      "summary": "Your Go-To-Network Platform.",
      "contact_info": {
        "email": "hello@theswarm.com",
        "phone": "+1 (415) 966-5539",
        "url": "www.theswarm.com/start"
      },
      "founded": "2021-01-01T00:00:00Z",
      "industries": [
        "Business Development",
        "Software Development"
      ],
      "websites": [
        "theswarm.com"
      ],
      "workforce": {
        "headcount": 19,
        "historical_headcount": [
          {
            "timestamp": 1627776000000,
            "count": 1
          },
          {
            "timestamp": 1643554476000,
            "count": 3
          },
          {
            "timestamp": 1646184222000,
            "count": 7
          }
        ],
        "size_class": "11-50"
      },
      "tech_stack": {
        "products": [
          "mongodb",
          "mysql",
          "nosql",
          "userzoom",
          "ios"
        ]
      },
      "business_data": {
        "identifiers": {
          "stock_ticker": "SWRM",
          "duns_code": "884745530",
          "cage_code": "1A2B3",
          "naics_code": "884745530"
        },
        "customer_types": [
          "B2G",
          "B2C"
        ],
        "stock_exchange": "NASDAQ",
        "is_acquired": false,
        "is_exited": false,
        "is_government": false,
        "is_non_profit": false,
        "is_shut_down": false,
        "is_startup": false,
        "is_stealth": false,
        "ownership_status": "active",
        "ownership_status_detailed": "Privately Held (backing)",
        "patent_count": 4,
        "financing_profile": {
          "status": "Venture Capital-Backed",
          "ipo_date": "2017-05-15T13:30:00Z",
          "outstanding_shares": 2200000000,
          "market_cap": 1984507936768
        }
      },
      "social_media": [
        {
          "network": "crunchbase",
          "slug": "the-swarm-e90d",
          "url": "crunchbase.com/organization/the-swarm-e90d"
        },
        {
          "network": "dealroom",
          "url": "app.dealroom.co/companies/the_swarm_1"
        },
        {
          "network": "facebook",
          "url": "www.facebook.com/wearetheswarm"
        },
        {
          "network": "linkedin",
          "slug": "wearetheswarm",
          "url": "linkedin.com/company/wearetheswarm"
        },
        {
          "network": "pitchbook",
          "url": "pitchbook.com/profiles/company/496661-59"
        },
        {
          "network": "twitter",
          "url": "twitter.com/wearetheswarm"
        }
      ],
      "linkedin_slugs": [
        "wearetheswarm"
      ],
      "locations": [
        {
          "name": "San Francisco, California, United States",
          "country": "United States",
          "is_primary": true
        },
        {
          "name": "Kraków",
          "country": "Poland",
          "is_primary": false
        }
      ],
      "logo_url": "https://cdn.theswarm.com/companies/logos/09d/9c5/09d9c510-c9f6-4c6e-9e62-fe5fedbeda87/300x300/c246b0439337c792a9651899b27570bc.jpeg",
      "investor": {
        "type": [
          "fund of funds",
          "venture fund"
        ],
        "specialities": [
          "network",
          "network management",
          "sales",
          "go-to-network"
        ],
        "investments": [
          "pre-seed",
          "seed"
        ],
        "geography_focus": [
          "united states"
        ]
      },
      "funding": {
        "last_round": {
          "last_round_type": "seed",
          "last_round_amount_usd": 1000000,
          "last_round_date": "2023-12-01T00:00:00Z",
          "last_round_investors": [
            {
              "id": "aa17de4b-bff3-470e-b2e2-69e3d048b50b",
              "kind": "Company",
              "name": "Microsoft",
              "crunchbase_slug": "microsoft"
            }
          ]
        },
        "rounds": [
          {
            "type": "seed",
            "amount_usd": 1000000,
            "date": "2023-12-01T00:00:00Z",
            "investors": [
              {
                "id": "aa17de4b-bff3-470e-b2e2-69e3d048b50b",
                "kind": "Company",
                "name": "Microsoft",
                "crunchbase_slug": "microsoft"
              }
            ]
          }
        ],
        "total_funding_amount_usd": 1000000
      },
      "updated_at": "2026-06-08T20:58:40.995418Z"
    }
  }
  ```
</CodeGroup>
