# Wellfound Company Info ## Overview | Property | Value | |----------|-------| | **Status** | degraded | | **Method** | `GET` | | **Endpoint** | `/v2/wellfound/company/info` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/wellfound-company-info | ## Description Retrieve startup and company data from Wellfound (formerly AngelList), including description, funding, team size, hiring status, and social links. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/wellfound/company/info' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Get Wellfound company info for Dataiku ```json { "id": "141418", "logo": "https://photos.wellfound.com/startups/i/141418-1a571520061744ccd50545d59ed3ff93-medium_jpg.jpg?buster=1631710332", "name": "Dataiku", "slug": "dataiku", "hiring": true, "website": "http://www.dataiku.com/", "headline": "Everyday AI, Extraordinary People", "description": "Dataiku is the platform for Everyday AI, systemizing the use of data for exceptional business results. By making the use of data and AI an everyday behavior, Dataiku unlocks the creativity within individual employees to power collective success at companies of all sizes and across all industries.", "is_incubator": false, "is_operating": null, "employee_count": "1001-5000", "social_networks": [ { "url": "http://twitter.com/dataiku", "name": "twitter" }, { "url": "http://www.facebook.com/dataiku", "name": "facebook" }, { "url": "http://www.linkedin.com/company/dataiku", "name": "linkedin" }, { "url": "http://www.dataiku.com/blog/", "name": "blog" } ], "company_financials_highlights": { "funding_total": 837290000, "num_funding_rounds": 9 } } ``` ## Documentation ## Overview The Wellfound Company Info endpoint retrieves startup and company data from Wellfound including funding, team size, hiring status, and social links. ## Quickstart ``` GET https://api.piloterr.com/v2/wellfound/company/info?query=dataiku ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Wellfound company URL or slug | ## Response fields | Field | Type | Description | |---|---|---| | `name` | string | Company name | | `headline` | string | Company tagline | | `employee_count` | string | Employee count range | | `hiring` | boolean | Actively hiring? | | `funding_total` | number | Total funding raised | | `num_funding_rounds` | number | Number of funding rounds | ## Main use cases - Enrich startup CRM databases with Wellfound funding data - Identify actively hiring startups for talent acquisition - Qualify venture-backed leads by total funding - Build startup intelligence tools with Wellfound profiles