{"openapi":"3.1.0","info":{"title":"Fiber AI API","version":"1.40.0","description":"# Welcome to the Fiber AI API!\n\n\n\nGet your API key at <https://fiber.ai/app/api>.\n\n## Authentication\n\nInclude your API key in **one** of the following ways (listed in priority order):\n\n**Option 1 — Request body (POST) or query params (GET):**\n```json\n{\n\"apiKey\": \"YOUR_API_KEY\"\n}\n```\n\nFor a GET request, you can include your API key in the query params like this:\n```\n?apiKey=YOUR_API_KEY\n```\n\n**Option 2 — `x-api-key` header:**\n```\nx-api-key: YOUR_API_KEY\n```\n\n**Option 3 — `Authorization` header (Bearer token):**\n```\nAuthorization: Bearer YOUR_API_KEY\n```\n\nIf an API key is provided in both the body/query and a header, the body/query value takes precedence.\n\n## Rate limits\n\nEach endpoint has its own rate limit, and if you exceed it you will get a '429' error. Please contact us if you'd like to request a higher rate limit.\n\n## Client timeouts\n\nSome sync endpoints perform live data fetches or multi-step enrichment and can take longer than the default HTTP client timeout (often 30s). Endpoints that require extra time display a **Recommended timeout** badge in their documentation. Configure your HTTP client's timeout to at least the recommended value before calling those endpoints to avoid premature connection drops.\n\n## Troubleshooting\n\nNeed help? Write to adi@fiber.ai or your contact on the Fiber team.\n\n## Webhooks\n\nFiber can send webhook notifications to your application when certain events occur. You can configure your webhook endpoints at <https://fiber.ai/app/api> (the same page where you manage your API keys).\n\nFor a full list of available webhook event types, see <https://www.svix.com/event-types/us/org_36NygGf4vTv8iDHHZgXdCNazcJx/>.\n\n# SDKs & MCP\n\nIntegrate the Fiber API into your applications with official SDKs or via **MCP** (Model Context Protocol) for LLM and AI agents.\n\n- **[llms.txt](/llms.txt)** — Agent-facing index (routing, MCP workflows, links to `/ai-docs/`).\n- **Node.js SDK:** <https://www.npmjs.com/package/@fiberai/sdk>\n- **Python SDK:** <https://pypi.org/project/fiberai/>\n- **[Fiber SDKs](https://docs.fiber.ai/article/fiber-sdks)** — Client libraries and usage guides for your language or framework.\n- **[Using MCP in LLMs](https://docs.fiber.ai/article/using-mcp-in-llms)** — Connect Claude, Cursor, and other MCP-compatible tools to Fiber.\n- **[Developing with AI agents](https://docs.fiber.ai/article/developing-with-ai-agents)** — Plugins, MCP servers, skills, and quickstart for building with Fiber in your IDE.\n\n---\n\n"},"components":{"schemas":{"HeadcountCrossedThreshold":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"headcount_crossed_threshold"},"entityType":{"type":"string","const":"company"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when headcount crosses the threshold going up or down"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"The headcount number to watch for crossing"}},"required":["type","entityType","direction","threshold"],"title":"Headcount crossed threshold"},"HeadcountGrowthPercent":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"headcount_growth_percent"},"entityType":{"type":"string","const":"company"},"minPercentChange":{"type":"number","exclusiveMinimum":0,"maximum":1000,"description":"Minimum percent change to trigger (e.g. 20 means 20% growth)"},"direction":{"type":"string","enum":["grew","shrank","either"],"description":"Whether to alert on growth, shrinkage, or either"}},"required":["type","entityType","minPercentChange","direction"],"title":"Headcount growth percent"},"NewFundingRound":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"new_funding_round"},"entityType":{"type":"string","const":"company"},"minAmountUsd":{"type":["number","null"],"minimum":0,"description":"Only alert for rounds above this amount. Omit for any amount."},"roundTypes":{"type":["array","null"],"items":{"type":"string","enum":["pre_seed","seed","angel","series_a","series_b","series_c","series_d","series_e","series_f","series_g","private_equity","debt_financing","grant","convertible_note","corporate_round","undisclosed"]},"minItems":1,"description":"Only alert for these round types. Omit for any round."}},"required":["type","entityType"],"title":"New funding round"},"FundingStageChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"funding_stage_changed"},"entityType":{"type":"string","const":"company"},"toStages":{"type":["array","null"],"items":{"type":"string","enum":["pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","private_equity","public","acquired"]},"minItems":1,"description":"Only alert if new stage is one of these. Omit for any stage change."}},"required":["type","entityType"],"title":"Funding stage changed"},"JobPostingWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"job_posting_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when a job posting title contains any of these keywords"},"seniorityLevels":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these seniority levels. Omit for any level."},"locationTypes":{"type":["array","null"],"items":{"type":"string","enum":["Remote","On-site","Hybrid"]},"minItems":1,"description":"Only alert for these location types. Omit for any."}},"required":["type","entityType","keywords"],"title":"Job posting with keyword"},"JobPostingInFunction":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"job_posting_in_function"},"entityType":{"type":"string","const":"company"},"jobFunctions":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when a job posting is in any of these departments/functions"}},"required":["type","entityType","jobFunctions"],"title":"Job posting in function"},"NewsWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"news_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when a news article title or summary matches any keyword"}},"required":["type","entityType","keywords"],"title":"News with keyword"},"CompanyNews":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_news"},"entityType":{"type":"string","const":"company"},"minArticles":{"type":["integer","null"],"minimum":0,"description":"Only alert if at least this many articles found in the check. Omit for any."}},"required":["type","entityType"],"title":"Company news"},"HqLocationChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"hq_location_changed"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"title":"HQ location changed"},"CompanyStatusChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_status_changed"},"entityType":{"type":"string","const":"company"},"toStatuses":{"type":["array","null"],"items":{"type":"string","enum":["operating","acquired","closed","ipo","subsidiary"]},"minItems":1,"description":"Only alert if new status is one of these. Omit for any status change."}},"required":["type","entityType"],"title":"Company status changed"},"TechnologyAdded":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"technology_added"},"entityType":{"type":"string","const":"company"},"technologies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these technologies. Omit for any new technology."}},"required":["type","entityType"],"title":"Technology added"},"CompanyPosted":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_posted"},"entityType":{"type":"string","const":"company"},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."}},"required":["type","entityType"],"title":"Company posted"},"CompanyPostedWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_posted_with_keyword"},"entityType":{"type":"string","const":"company"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Alert for posts matching these keywords."},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."}},"required":["type","entityType"],"title":"Company posted with keyword"},"FollowerCountGrowth":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"follower_count_growth"},"entityType":{"type":"string","const":"company"},"minAbsoluteGrowth":{"type":["integer","null"],"minimum":0,"description":"Minimum absolute follower increase to trigger. Omit or set to 0 for any increase."},"minPercentGrowth":{"type":["number","null"],"exclusiveMinimum":0,"description":"Minimum percent follower increase to trigger. Omit for any increase."}},"required":["type","entityType"],"title":"Follower count growth"},"CompanyNameChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_name_changed"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"title":"Company name changed"},"CompanyDescriptionChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_description_changed"},"entityType":{"type":"string","const":"company"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new description contains one of these keywords. Omit for any change."}},"required":["type","entityType"],"title":"Company description changed"},"CompanyWentInactive":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_went_inactive"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"title":"Company went inactive"},"EmployeeCountMilestone":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"employee_count_milestone"},"entityType":{"type":"string","const":"company"},"milestone":{"type":"integer","exclusiveMinimum":0,"description":"Employee count milestone to watch (e.g. 100, 500, 1000)"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the milestone"}},"required":["type","entityType","milestone","direction"],"title":"Employee count milestone"},"NewOfficeLocation":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"new_office_location"},"entityType":{"type":"string","const":"company"},"countries":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for offices in these countries. Omit for any new office."},"cities":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for offices in these cities. Omit for any new office."}},"required":["type","entityType"],"title":"New office location"},"CompanyLogoChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"company_logo_changed"},"entityType":{"type":"string","const":"company"}},"required":["type","entityType"],"title":"Company logo changed"},"AcquiredCompany":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"acquired_company"},"entityType":{"type":"string","const":"company"},"minPriceUsd":{"type":["number","null"],"minimum":0,"description":"Only alert for acquisitions above this price. Omit for any acquisition."}},"required":["type","entityType"],"title":"Acquired company"},"NewInvestor":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"new_investor"},"entityType":{"type":"string","const":"company"},"investorTypes":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these investor types (e.g. 'venture_capital'). Omit for any new investor."}},"required":["type","entityType"],"title":"New investor"},"RecentlyHiredWithTitle":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"recently_hired_with_title"},"entityType":{"type":"string","const":"company"},"titleKeywords":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Title keywords to search for. Fires when the company hires someone whose title matches any keyword."},"minNewHires":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Minimum number of new hires to trigger the alert. Omit for 1."}},"required":["type","entityType","titleKeywords"],"title":"Recently hired with title"},"DepartmentSizeThreshold":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"department_size_threshold"},"entityType":{"type":"string","const":"company"},"department":{"type":"string","minLength":1,"description":"Department name to track (e.g. 'Engineering', 'Sales'). Matched against the company's organizational structure."},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"The employee count threshold to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when department size crosses above or below the threshold"}},"required":["type","entityType","department","threshold","direction"],"title":"Department size threshold"},"TrackerSignal":{"type":"object","properties":{"id":{"type":"string","description":"Signal ID"},"entityId":{"type":"string","description":"Tracked entity ID"},"entityType":{"type":"string","enum":["company","person"],"description":"Entity type"},"linkedinIdentifier":{"type":"string","description":"LinkedIn org ID or user ID"},"type":{"type":"string","description":"Signal type (e.g. headcount_crossed_threshold)"},"summary":{"type":["string","null"],"description":"Human-readable description of what changed"},"changeData":{"type":"array","items":{"type":"object","additionalProperties":{}},"description":"Array of objects describing what changed. Shape varies by signal type."},"observedAt":{"type":"string","format":"date-time","description":"When the signal was detected"},"deliveryStatus":{"type":"string","enum":["PENDING","DELIVERED","FAILED","SKIPPED"],"description":"Webhook delivery status"},"deliveredAt":{"type":["string","null"],"format":"date-time","description":"When the webhook was successfully delivered. Null when status is PENDING, FAILED, or SKIPPED."},"centiCreditsCharged":{"type":"integer","minimum":0,"description":"Credits charged for the tracker check that produced this signal, in centi-credits (100 = 1 credit)."}},"required":["id","entityId","entityType","linkedinIdentifier","type","summary","changeData","observedAt","deliveryStatus","deliveredAt","centiCreditsCharged"],"title":"Tracker signal"},"PersonChangedCompany":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_changed_company"},"entityType":{"type":"string","const":"person"},"toCompanies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if they moved TO one of these companies (domains or slugs). Omit for any."},"fromCompanies":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if they moved FROM one of these companies. Omit for any."}},"required":["type","entityType"],"title":"Person changed company"},"PersonTitleChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_title_changed"},"entityType":{"type":"string","const":"person"},"titleKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new title contains one of these keywords. Omit for any title change."}},"required":["type","entityType"],"title":"Person title changed"},"PersonStealthChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_stealth_changed"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["entered","exited","either"],"description":"Whether to alert on entering stealth, exiting, or either"}},"required":["type","entityType","direction"],"title":"Person stealth changed"},"PersonOpenToWork":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_open_to_work"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop signaling open-to-work"}},"required":["type","entityType","direction"],"title":"Person open to work"},"PersonIsHiring":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_is_hiring"},"entityType":{"type":"string","const":"person"},"direction":{"type":"string","enum":["started","stopped","either"],"description":"Whether to alert when they start or stop signaling is-hiring"}},"required":["type","entityType","direction"],"title":"Person is hiring"},"PersonHeadlineChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_headline_changed"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new headline contains one of these keywords. Omit for any change."}},"required":["type","entityType"],"title":"Person headline changed"},"PersonLocationChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_location_changed"},"entityType":{"type":"string","const":"person"},"toCountries":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if moved to one of these country codes. Omit for any relocation."}},"required":["type","entityType"],"title":"Person location changed"},"PersonTagGained":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_tag_gained"},"entityType":{"type":"string","const":"person"},"tags":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"Alert when the person gains any of these system-assigned tags"}},"required":["type","entityType","tags"],"title":"Person tag gained"},"PersonPosted":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_posted"},"entityType":{"type":"string","const":"person"},"minReactions":{"type":["integer","null"],"minimum":0,"description":"Only alert for posts with at least this many reactions. Omit for any."}},"required":["type","entityType"],"title":"Person posted"},"PersonPostedWithKeyword":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_posted_with_keyword"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Alert for posts matching these keywords."}},"required":["type","entityType"],"title":"Person posted with keyword"},"PersonSkillsAdded":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_skills_added"},"entityType":{"type":"string","const":"person"},"skills":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for these specific skills being added. Omit for any new skill."}},"required":["type","entityType"],"title":"Person skills added"},"PersonGotPromoted":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_got_promoted"},"entityType":{"type":"string","const":"person"},"seniorityKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new title contains these seniority keywords (e.g. 'VP', 'Director'). Omit for any promotion."}},"required":["type","entityType"],"title":"Person got promoted"},"PersonStartedCompany":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_started_company"},"entityType":{"type":"string","const":"person"}},"required":["type","entityType"],"title":"Person started company"},"PersonEmploymentTypeChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_employment_type_changed"},"entityType":{"type":"string","const":"person"},"toTypes":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new employment type is one of these (e.g. 'Contract', 'Part-time'). Omit for any change."}},"required":["type","entityType"],"title":"Person employment type changed"},"PersonConnectionsMilestone":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_connections_milestone"},"entityType":{"type":"string","const":"person"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"Connection count to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the threshold"}},"required":["type","entityType","threshold","direction"],"title":"Person connections milestone"},"PersonFollowerMilestone":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_follower_milestone"},"entityType":{"type":"string","const":"person"},"threshold":{"type":"integer","exclusiveMinimum":0,"description":"Follower count to watch for crossing"},"direction":{"type":"string","enum":["above","below"],"description":"Whether to alert when crossing above or below the threshold"}},"required":["type","entityType","threshold","direction"],"title":"Person follower milestone"},"PersonSummaryChanged":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_summary_changed"},"entityType":{"type":"string","const":"person"},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert if new summary contains one of these keywords. Omit for any change."}},"required":["type","entityType"],"title":"Person summary changed"},"PersonNewCertification":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_new_certification"},"entityType":{"type":"string","const":"person"},"certificationKeywords":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"description":"Only alert for certifications matching these keywords. Omit for any new cert."}},"required":["type","entityType"],"title":"Person new certification"},"PersonBecameVerified":{"type":"object","properties":{"lookbackDays":{"type":["integer","null"],"minimum":1,"maximum":90,"description":"Compare against a snapshot from approximately N days ago instead of the most recent prior snapshot. Omit for the default previous-snapshot comparison. Maximum 90 days."},"type":{"type":"string","const":"person_became_verified"},"entityType":{"type":"string","const":"person"}},"required":["type","entityType"],"title":"Person became verified"}}},"paths":{"/openapi.json":{"get":{"operationId":"getOpenApi","summary":"Get OpenAPI schema","tags":["Utility"],"description":"Get the comprehensive, auto-generated OpenAPI spec for all Fiber APIs. **Note**: This file is very large, so we don't recommend feeding it into LLMs directly. Agents should instead fetch `/llms.txt` for routing instructions and `/ai-docs/<operationId>.md` for per-operation context. If you'd like to work with Fiber from Claude, ChatGPT, or another LLM, you can also use our MCP server, explained at <https://docs.fiber.ai/article/using-mcp-in-llms>.","responses":{"200":{"description":"Default Response"}}}},"/health":{"get":{"operationId":"healthCheck","summary":"Health check","tags":["Utility"],"description":"Health check endpoint to check if the server is running","responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string","enum":["healthy"]},"timestamp":{"type":"string"}},"required":["status","timestamp"]}}}}}}},"/v1/get-org-credits":{"get":{"operationId":"getOrgCredits","summary":"Get organization credits","tags":["Account"],"description":"Get credits for an organization\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"organizationId":{"type":"string"},"max":{"type":"number"},"used":{"type":"number"},"available":{"type":"number"},"usagePeriodResetsOn":{"type":"string"},"creditsPerOperation":{"type":["object","null"],"properties":{"getCompanyFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getPersonFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getCompanyCountFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getJobPostingCountFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getPersonCountFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getInvestorFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"getInvestmentFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getJobPostingFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"textToCompanySearchParams":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"textToPersonSearchParams":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"textToSearchParams":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liveEnrichCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liveEnrichPerson":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liveEnrichPersonForContactReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"standardizeCompanySlug":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"standardizePersonSlug":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"workEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"personalEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"liteEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"allEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"phoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"combinedReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"validateEmail":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"validatePhone":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"emailToLinkedinUrl":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"kitchenSinkPerson":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"kitchenSinkCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"salesNavCompanyScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"salesNavPersonScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"salesNavPersonScrapeWithoutLiveFetch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"googleMapsScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"geolocation":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"jobTitleRewrite":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"combinedEnrichment":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":600}]}},"domainLookupAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"localBusinessResearchAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":400}]}},"githubLookupAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"getLiProfileFromGithubUsername":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"getEmailFromGithubUsername":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"socialMediaFinderAgent":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"bulkCompanyLogoLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":30}]}},"bulkProfilePicLookup":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":30}]}},"getLiProfilePosts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiCompanyPosts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiPostComments":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiPostReactions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiProfileComments":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiProfileReactions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getLiProfileLatestActivities":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"getLiProfileLastActiveDate":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"getProfileLatestLiPost":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"getCompanyLatestLiPost":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"savedSearchCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"savedSearchProspect":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"premiumWorkEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"premiumPersonalEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":300}]}},"premiumAllEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"premiumPhoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"premiumCombinedReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":700}]}},"exhaustiveWorkEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"exhaustivePersonalEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":500}]}},"exhaustiveAllEmailReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":900}]}},"exhaustivePhoneReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":400}]}},"exhaustiveCombinedReveal":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":1200}]}},"getCompanyRevenue":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":400}]}},"multiSourceCompanySearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"multiSourcePersonSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"scoutingReportCompany":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":600}]}},"scoutingReportPerson":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":600}]}},"trackPersonsJobChanges":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"youtubeVideoTranscript":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeVideoDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeVideoComments":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"youtubeChannelDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserPosts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserFollowers":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserFollowing":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostDetails":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostReplies":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostQuotes":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostReposts":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostReactions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserMentions":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialUserSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"socialPostSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"webpageScreenshot":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"webpageScrape":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"generateDepthChart":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":800}]}},"realEstateSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"flightSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"mosaicRow":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":1000}]}},"getEntityFromDb":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":100}]}},"trackEntity":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}},"blueCollarJobSearch":{"type":"object","properties":{"levels":{"type":"array","items":{"type":"object","properties":{"limit":{"type":["number","null"],"exclusiveMinimum":0},"centiCreditCost":{"type":"number","minimum":0}},"required":["centiCreditCost"]},"minItems":1}},"required":["levels"],"default":{"levels":[{"limit":null,"centiCreditCost":200}]}}},"required":["getCompanyFromDb","getPersonFromDb","getCompanyCountFromDb","getJobPostingCountFromDb","getPersonCountFromDb","getInvestorFromDb","getInvestmentFromDb","getJobPostingFromDb","textToCompanySearchParams","textToPersonSearchParams","textToSearchParams","liveEnrichCompany","liveEnrichPerson","liveEnrichPersonForContactReveal","standardizeCompanySlug","standardizePersonSlug","workEmailReveal","personalEmailReveal","liteEmailReveal","allEmailReveal","phoneReveal","combinedReveal","validateEmail","validatePhone","emailToLinkedinUrl","kitchenSinkPerson","kitchenSinkCompany","salesNavCompanyScrape","salesNavPersonScrape","salesNavPersonScrapeWithoutLiveFetch","googleMapsScrape","geolocation","jobTitleRewrite","combinedEnrichment","domainLookupAgent","localBusinessResearchAgent","githubLookupAgent","getLiProfileFromGithubUsername","getEmailFromGithubUsername","socialMediaFinderAgent","bulkCompanyLogoLookup","bulkProfilePicLookup","getLiProfilePosts","getLiCompanyPosts","getLiPostComments","getLiPostReactions","getLiProfileComments","getLiProfileReactions","getLiProfileLatestActivities","getLiProfileLastActiveDate","getProfileLatestLiPost","getCompanyLatestLiPost","savedSearchCompany","savedSearchProspect","premiumWorkEmailReveal","premiumPersonalEmailReveal","premiumAllEmailReveal","premiumPhoneReveal","premiumCombinedReveal","exhaustiveWorkEmailReveal","exhaustivePersonalEmailReveal","exhaustiveAllEmailReveal","exhaustivePhoneReveal","exhaustiveCombinedReveal","getCompanyRevenue","multiSourceCompanySearch","multiSourcePersonSearch","scoutingReportCompany","scoutingReportPerson","trackPersonsJobChanges","youtubeVideoTranscript","youtubeVideoDetails","youtubeVideoComments","youtubeSearch","youtubeChannelDetails","socialUserDetails","socialUserPosts","socialUserFollowers","socialUserFollowing","socialPostDetails","socialPostReplies","socialPostQuotes","socialPostReposts","socialPostReactions","socialUserMentions","socialUserSearch","socialPostSearch","webpageScreenshot","webpageScrape","generateDepthChart","realEstateSearch","flightSearch","mosaicRow","getEntityFromDb","trackEntity","blueCollarJobSearch"]}},"required":["organizationId","max","used","available","usagePeriodResetsOn"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/rate-limits":{"get":{"operationId":"getRateLimits","summary":"Get organization rate limits","tags":["Account"],"description":"Returns the effective rate limits for all API endpoints for your organization. If your organization has custom rate limits on any endpoint, those are reflected here.\n\n<span>⚡ <strong>Rate limit:</strong> 20 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":20,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"rateLimits":{"type":"array","items":{"type":"object","properties":{"method":{"type":"string","minLength":1,"description":"HTTP method (e.g. GET, POST)"},"path":{"type":"string","minLength":1,"description":"Route path (e.g. /v1/search/people)"},"max":{"type":"number","description":"Maximum number of requests allowed in the window"},"windowSeconds":{"type":["number","null"],"description":"Time window duration in seconds (e.g. 60), or null if unavailable"},"isCustom":{"type":"boolean","description":"Whether this rate limit is a custom override for your organization"}},"required":["method","path","max","windowSeconds","isCustom"]},"description":"Rate limits for all available API endpoints"}},"required":["rateLimits"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/auto-topup/settings":{"get":{"operationId":"getAutoTopupSettings","summary":"Get auto top-up settings","tags":["Account"],"description":"Get the organization's auto top-up configuration. When configured is false, no auto top-up settings exist yet.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"oneOf":[{"type":"object","properties":{"configured":{"type":"boolean","enum":[true]},"isEnabled":{"type":"boolean","description":"Whether auto top-up is currently enabled for this organization"},"creditThreshold":{"type":"integer","exclusiveMinimum":0,"description":"Credit balance threshold below which auto top-up triggers"},"creditsToBuy":{"type":"integer","minimum":1000,"maximum":1000000,"description":"Number of credits purchased when auto top-up triggers"}},"required":["configured","isEnabled","creditThreshold","creditsToBuy"]},{"type":"object","properties":{"configured":{"type":"boolean","enum":[false]}},"required":["configured"]}]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/auto-topup/configure":{"post":{"operationId":"updateAutoTopupSettings","summary":"Update auto top-up settings","tags":["Account"],"description":"Update the organization's auto top-up configuration. Enabling auto top-up will automatically charge your organization's saved payment method via Stripe when your credit balance falls below the configured threshold. AI agents should confirm with a human operator before enabling this feature.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"isEnabled":{"type":"boolean","description":"Whether auto top-up is enabled"},"creditThreshold":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Credit balance threshold below which auto top-up triggers. Required when isEnabled is true."},"creditsToBuy":{"type":["integer","null"],"minimum":1000,"maximum":1000000,"description":"Number of credits to purchase when auto top-up triggers. Required when isEnabled is true."}},"required":["apiKey","isEnabled"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"oneOf":[{"type":"object","properties":{"configured":{"type":"boolean","enum":[true]},"isEnabled":{"type":"boolean","description":"Whether auto top-up is currently enabled for this organization"},"creditThreshold":{"type":"integer","exclusiveMinimum":0,"description":"Credit balance threshold below which auto top-up triggers"},"creditsToBuy":{"type":"integer","minimum":1000,"maximum":1000000,"description":"Number of credits purchased when auto top-up triggers"}},"required":["configured","isEnabled","creditThreshold","creditsToBuy"]},{"type":"object","properties":{"configured":{"type":"boolean","enum":[false]}},"required":["configured"]}]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/buy-credits":{"post":{"operationId":"buyCredits","summary":"Buy credits","tags":["Account"],"description":"Purchase additional credits for your organization at $20.00 per 1,000 credits. This endpoint immediately charges real money to your organization's saved payment method via Stripe. AI agents are strongly recommended to confirm with their human operator before calling this endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 2 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"creditsToBuy":{"type":"integer","minimum":1000,"maximum":1000000,"description":"Number of credits to purchase. This will immediately charge your saved payment method."},"idempotencyKey":{"type":["string","null"],"minLength":1,"maxLength":255,"description":"A unique key to safely retry a purchase. If a request fails or times out, resend with the same key to avoid being charged twice. When omitted, each call is a new purchase."}},"required":["apiKey","creditsToBuy"]}}}},"x-rate-limit":{"max":2,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"message":{"type":"string"},"creditsPurchased":{"type":"integer","exclusiveMinimum":0},"centsSpent":{"type":"integer","minimum":0,"description":"Total amount charged in US cents for this purchase"}},"required":["message","creditsPurchased","centsSpent"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/exhaustive/poll":{"post":{"operationId":"pollExhaustiveContactEnrichmentResult","summary":"Poll exhaustive contact details reveal result","tags":["Contact details"],"description":"Polls the status of an exhaustive contact reveal task. Pass the task ID returned by /contact-details/exhaustive/start. Returns the current status and, once complete, the full set of discovered emails and phone numbers.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"Task ID from the \"start exhaustive contact enrichment\" endpoint"}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]}},"status":{"type":"string","enum":["started","live-enriching","grabbing-contact-info","completed","failed"]},"error":{"type":"string"},"exhaustive":{"type":["boolean","null"]}},"required":["emails","phoneNumbers","status"]},"done":{"type":"boolean","description":"Whether the enrichment is completed or not."}},"required":["profile","done"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/depth-chart/poll":{"post":{"operationId":"pollDepthChart","summary":"Poll depth chart generation result","tags":["Company info"],"description":"Polls the status of a depth chart generation — a close analog to a company's internal org chart. Pass the report ID returned by /depth-chart/start. Returns the current status and, once complete, the depth chart aggregate with employee distribution across functions and seniority levels. Includes summary stats for each bucket, but does not list the people in each bucket.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"reportId":{"type":"string","minLength":1,"description":"Report ID returned by the /depth-chart/start endpoint"}},"required":["apiKey","reportId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","description":"Report is still being generated","enum":["pending"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","description":"Report generation succeeded","enum":["completed"]},"report":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique identifier for this report"},"companyInfo":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name"},"linkedinUrl":{"type":["string","null"],"description":"Full LinkedIn company profile URL"},"linkedinOrgId":{"type":["string","null"],"description":"LinkedIn organization ID for the company"},"domain":{"type":["string","null"],"description":"Company primary domain"}},"description":"Company identification details"},"totalEmployees":{"type":"number","description":"Total number of classified employees in the depth chart"},"averageTenureMonths":{"type":["number","null"],"description":"Overall average tenure in months across all employees"},"buckets":{"type":"array","items":{"type":"object","properties":{"function":{"type":"string","description":"Functional area (e.g. Engineering, Sales/GTM, Marketing, Product)"},"seniority":{"type":"string","description":"Seniority level (Junior, Mid-Level, Senior, Manager, Executive)"},"totalEmployees":{"type":"number","description":"Number of employees in this function x seniority combination"},"averageTenureMonths":{"type":["number","null"],"description":"Average tenure in months for employees in this combination"}},"required":["function","seniority","totalEmployees","averageTenureMonths"]},"description":"One entry per function x seniority combination with headcount and average tenure. Includes summary stats for each bucket, but does not list the people in each bucket."},"seniorityStats":{"type":"array","items":{"type":"object","properties":{"seniority":{"type":"string","description":"Seniority level (Junior, Mid-Level, Senior, Manager, Executive)"},"totalEmployees":{"type":"number","description":"Total employees at this seniority level"},"averageTenureMonths":{"type":["number","null"],"description":"Average tenure in months across all functions at this seniority level"}},"required":["seniority","totalEmployees","averageTenureMonths"]},"description":"Aggregated headcount and tenure per seniority level"},"functionStats":{"type":"array","items":{"type":"object","properties":{"function":{"type":"string","description":"Functional area (e.g. Engineering, Sales/GTM, Marketing)"},"totalEmployees":{"type":"number","description":"Total employees in this function"},"averageTenureMonths":{"type":["number","null"],"description":"Average tenure in months across all seniority levels in this function"}},"required":["function","totalEmployees","averageTenureMonths"]},"description":"Aggregated headcount and tenure per functional area"},"markdownSummary":{"type":"string","description":"Human-readable markdown summary of the depth chart, including a grid table of employee counts by function and seniority"}},"required":["reportId","companyInfo","totalEmployees","averageTenureMonths","buckets","seniorityStats","functionStats","markdownSummary"],"description":"The completed depth chart report"}},"required":["status","report"]},{"type":"object","properties":{"status":{"type":"string","description":"Report generation failed","enum":["failed"]},"errorMessage":{"type":"string","description":"Description of why generation failed"}},"required":["status","errorMessage"]}]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/batch/poll":{"post":{"operationId":"pollBatchContactDetails","summary":"Poll batch contact details","tags":["Contact details"],"description":"Polls a batch contact details task. Returns partial results as they complete. Call this endpoint repeatedly until the 'done' field is true. Use the task ID returned from the 'Start batch contact details' endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"The task ID from the start endpoint response."},"cursor":{"type":["string","null"],"description":"The pagination cursor from the previous poll response. Omit for the first request."},"take":{"type":"integer","exclusiveMinimum":0,"maximum":100,"default":100,"description":"The number of people to return per page. Defaults to 100."}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"overallStats":{"type":"object","properties":{"totalPeopleToFetch":{"type":"integer","minimum":0,"description":"The total number of people in this batch task."},"numCompleted":{"type":"integer","minimum":0,"description":"The number of people for which contact reveal has completed successfully."},"numFailed":{"type":"integer","minimum":0,"description":"The number of people for which enrichment failed (no data found or error occurred)."},"numRemaining":{"type":"integer","minimum":0,"description":"The number of people currently being processed (in progress)."},"numRejected":{"type":"integer","minimum":0,"description":"The number of people rejected before queueing because healing failed (for example, an invalid or unresolvable LinkedIn URL)."},"numDuplicates":{"type":"integer","minimum":0,"description":"The number of duplicates found in the input."}},"required":["totalPeopleToFetch","numCompleted","numFailed","numRemaining","numRejected","numDuplicates"],"description":"The overall statistics for the batch enrichment task."},"done":{"type":"boolean","description":"Whether the batch task has finished. When true, check the 'failed' field to determine if it completed successfully or failed."},"failed":{"type":"boolean","description":"Whether the batch task failed. If true, the task encountered an error and won't be retried. If false and done=true, the task completed successfully or was cancelled (check the 'canceled' field). If done=false, this field indicates current processing state."},"canceled":{"type":"boolean","description":"Whether the batch task was cancelled. When true, unclaimed profiles were not processed and credits were refunded."},"pageResults":{"type":"array","items":{"type":"object","properties":{"inputs":{"type":"object","properties":{"linkedinUrl":{"type":"object","properties":{"value":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?<slug>[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"A LinkedIn URL, like 'https://www.linkedin.com/in/jake'"}},"required":["value"]}},"required":["linkedinUrl"],"description":"The input details provided for this person."},"outputs":{"type":["object","null"],"properties":{"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]}},"exhaustive":{"type":["boolean","null"]}},"required":["emails","phoneNumbers"],"description":"The reveal result for this person."}},"required":["inputs"]},"description":"The array of results for each person in the current page."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page of results."}},"required":["overallStats","done","failed","canceled","pageResults"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/batch/poll":{"post":{"operationId":"pollBatchLiveEnrich","summary":"Poll batch live enrichment","tags":["Live fetch"],"description":"Polls a batch live enrichment task for progress and results. Returns paginated enrichment results as they complete. Call repeatedly until status is 'completed' or 'failed'.\n\n<span>⚡ <strong>Rate limit:</strong> 360 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"The batch ID returned from the start endpoint"},"cursor":{"type":["string","null"],"description":"Pagination cursor from the previous poll response. Omit for the first request."},"take":{"type":"integer","exclusiveMinimum":0,"maximum":100,"default":100,"description":"Number of results per page. Defaults to 100."}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":360,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["PENDING","PROCESSING","COMPLETED","FAILED"],"description":"Current status of the batch job"},"type":{"type":"string","enum":["PROFILE","COMPANY"]},"progress":{"type":"object","properties":{"total":{"type":"integer","minimum":0,"description":"Total unique identifiers in the batch (excluding duplicates skipped at submission)"},"completed":{"type":"integer","minimum":0,"description":"Number successfully enriched"},"notFound":{"type":"integer","minimum":0,"description":"Number of identifiers not found on LinkedIn"},"failed":{"type":"integer","minimum":0,"description":"Number that failed due to enrichment errors"},"malformed":{"type":"integer","minimum":0,"description":"Number of identifiers that could not be parsed from your input"},"pending":{"type":"integer","minimum":0,"description":"Number still waiting or in progress"}},"required":["total","completed","notFound","failed","malformed","pending"]},"results":{"type":"array","items":{"type":"object","properties":{"identifier":{"type":"string","description":"The raw identifier that was submitted."},"status":{"type":"string","enum":["COMPLETED","FAILED","NOT_FOUND","MALFORMED"],"description":"The enrichment status for this identifier."},"profile":{"type":["object","null"],"properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"],"description":"Enriched profile data. Present only when type is profile and status is COMPLETED."},"company":{"type":["object","null"],"properties":{"headline":{"type":["string","null"]},"description":{"type":["string","null"]},"employee_count":{"type":["number","null"]},"follower_count":{"type":["number","null"]},"founded_year":{"type":["number","null"]},"industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"linkedin_url":{"type":["string","null"]},"locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"name":{"type":["string","null"]},"org_id":{"type":["string","null"]},"slug":{"type":"string"},"specialties":{"type":["array","null"],"items":{"type":"string"}},"ticker":{"type":["string","null"]},"type":{"type":["string","null"]},"domain":{"type":["string","null"]},"website":{"type":["string","null"]},"est_employee_count_lower_bound":{"type":["number","null"]},"est_employee_count_upper_bound":{"type":["number","null"]},"standardized_industries":{"type":["array","null"],"items":{"type":"string"}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"logo_url":{"type":["string","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"revenue_usd_lower_bound":{"type":["string","null"]},"revenue_usd_upper_bound":{"type":["string","null"]}},"required":["slug"],"description":"Enriched company data. Present only when type is company and status is COMPLETED."}},"required":["identifier","status"]},"description":"Paginated enrichment results for completed/failed items."},"nextCursor":{"type":["string","null"],"description":"Pagination cursor for the next page. Null when no more results."},"completedAt":{"type":["string","null"],"format":"date-time","description":"ISO timestamp of when the batch completed, if done"}},"required":["status","type","progress","results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/google-maps-search/poll":{"post":{"operationId":"poll-google-maps-results","summary":"Poll for Google Maps results","tags":["Google maps"],"description":"Poll for Google Maps results\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchID":{"type":"string","minLength":1,"description":"The ID of the Google Maps search. You should get this from the start endpoint."},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of results to return per page."},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results. If this is null, then the first page of results will be returned."}},"required":["apiKey","searchID"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"results":{"type":"array","items":{"type":"object","properties":{"placeId":{"type":"string"},"name":{"type":"string"},"address":{"type":["string","null"]},"latitude":{"type":"number"},"longitude":{"type":"number"},"description":{"type":["string","null"]},"website":{"type":["string","null"]},"rating":{"type":["number","null"]},"numReviews":{"type":["integer","null"]},"primaryType":{"type":["string","null"]},"allTypes":{"type":"array","items":{"type":"string"}},"priceLevel":{"type":["string","null"]},"phoneNumber":{"type":["string","null"]},"countryIsoCode":{"type":["string","null"]},"googleMapsURL":{"type":"string","description":"The Google Maps URL of the place"}},"required":["placeId","name","latitude","longitude","allTypes","googleMapsURL"]},"description":"The results of the search."},"nextCursor":{"type":["string","null"],"description":"The cursor to use to get the next page of results. If this is null, then there are no more results to fetch."}},"required":["results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/local-business-search/poll":{"post":{"operationId":"pollLocalBusinessSearch","summary":"Poll local business search","tags":["AI research"],"description":"Poll Local Business Agent search results for a given researchRunId\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"researchRunId":{"type":"string","description":"Research run ID of the local business search"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of results to return per page"},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results. If this is null, then the first page of results will be returned."}},"required":["apiKey","researchRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"researchRunId":{"type":"string","description":"Research run ID of the local business search"},"status":{"type":"string","enum":["PENDING","RUNNING","COMPLETED","FAILED"],"description":"Current status of the research run"},"progress":{"type":"object","properties":{"completed":{"type":"integer","description":"Number of companies that have been processed so far"},"total":{"type":"integer","description":"Total number of companies submitted for research"}},"required":["completed","total"],"description":"Progress of the research run"},"data":{"type":"object","properties":{"observations":{"type":"array","items":{"type":"object","properties":{"researchRunId":{"type":"string"},"websiteUrls":{"type":"array","items":{"type":"string"}},"rationale":{},"localBusiness":{"type":"object","properties":{"companyName":{"type":"string"},"domain":{"type":["string","null"]},"city":{"type":["string","null"]},"state":{"type":["string","null"]},"stateCode":{"type":["string","null"]},"countryName":{"type":["string","null"]},"country3LetterCode":{"type":["string","null"]},"address":{"type":["string","null"]},"context":{"type":["string","null"]}},"required":["companyName"]},"businessEmails":{"type":"array","items":{"type":"object","properties":{"emailAddress":{"type":"string"},"domain":{"type":["string","null"]}},"required":["emailAddress"]}},"businessPhones":{"type":"array","items":{"type":"object","properties":{"phoneNumber":{"type":"string"},"countryCode":{"type":["string","null"]},"countryCallingCode":{"type":["number","null"]}},"required":["phoneNumber"]}},"socialMediaLinks":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string"},"platform":{"type":"string"}},"required":["url","platform"]}},"employees":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"role":{"type":["string","null"]},"otherInfo":{},"emailAddress":{"type":["object","null"],"properties":{"emailAddress":{"type":"string"},"domain":{"type":"string"}},"required":["emailAddress","domain"]},"phoneNumber":{"type":["object","null"],"properties":{"phoneNumber":{"type":"string"},"countryCode":{"type":["string","null"]},"countryCallingCode":{"type":["number","null"]}},"required":["phoneNumber"]},"socialMediaLinks":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string"},"platform":{"type":"string"}},"required":["url","platform"]}}},"required":["name","socialMediaLinks"]}}},"required":["researchRunId","websiteUrls","localBusiness","businessEmails","businessPhones","socialMediaLinks","employees"]}}},"required":["observations"],"description":"The Local business agent search result"},"nextCursor":{"type":["string","null"],"description":"The cursor to use to get the next page of results. If this is null, then there are no more results to fetch"}},"required":["researchRunId","status","progress","data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/google-maps-search/check":{"post":{"operationId":"check-google-maps-results","summary":"Check progress for Google Maps results","tags":["Google maps"],"description":"Check progress for Google Maps results\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchID":{"type":"string","minLength":1,"description":"The ID of the Google Maps search. You should get this from the start endpoint."}},"required":["apiKey","searchID"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["NOT_STARTED","RUNNING","COMPLETED","FAILED"]},"totalPlacesFound":{"type":"integer","minimum":0,"description":"The total number of places found so far."},"totalPlacesRequested":{"type":"integer","minimum":0,"description":"The total number of places requested."},"percentageCompleted":{"type":"number","minimum":0,"maximum":100,"description":"The percentage of the search that has been completed."}},"required":["status","totalPlacesFound","totalPlacesRequested","percentageCompleted"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/domain-lookup/polling":{"post":{"operationId":"domainLookupPolling","summary":"Poll Domain lookup","tags":["AI research"],"description":"Poll for the results of a domain lookup task.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"domainAgentRunId":{"type":"string","description":"The ID of the domain agent run returned by the trigger endpoint."},"cursor":{"type":["string","null"],"description":"The cursor from where to start fetching the next page of results. Provide the `nextCursor` from the previous response to continue from there."},"pageSize":{"type":"number","minimum":1,"maximum":100,"default":10,"description":"The number of results to fetch per page."}},"required":["apiKey","domainAgentRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"]},"data":{"type":"array","items":{"type":"object","properties":{"companyName":{"type":"string","description":"The name of the company."},"bestDomain":{"type":["string","null"],"description":"The best matching domain for the company. Null if no domain was found."},"emailDomains":{"type":["array","null"],"items":{"type":"object","properties":{"emailDomain":{"type":["string","null"],"description":"The email domain found for the company. Personal email domains are excluded."},"confidence":{"type":["number","null"],"minimum":0,"maximum":10,"description":"The confidence score for the email domain found (1-10, where 10 is most confident)."},"rationale":{"type":["string","null"],"description":"The rationale for the email domain selection."}}},"description":"The email domains of the company."},"allDomains":{"type":["array","null"],"items":{"type":"string"},"description":"All found domains for the company."},"confidence":{"type":["integer","null"],"minimum":0,"maximum":10,"description":"The confidence score between 0 and 10 denoting the match quality. Higher confidence score means the company has more matching parameters."},"rationale":{"type":"string","description":"The reasoning for why the agent chose the given company."}},"required":["companyName","rationale"]},"description":"The list of companies found along with their rationale and confidence scores."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page of results. Null if there are no more results."},"hasMore":{"type":"boolean","description":"Whether there are more results to fetch."}},"required":["status","data","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/github-lookup/poll":{"post":{"operationId":"githubLookupPoll","summary":"Poll GitHub lookup results","tags":["GitHub"],"description":"Poll for the results of a GitHub lookup task. Returns progress breakdown and all completed results in a single response (no pagination).\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"githubAgentRunId":{"type":"string","description":"The ID of the GitHub lookup agent run which you got back from the trigger endpoint."}},"required":["apiKey","githubAgentRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"githubAgentRunId":{"type":"string","description":"The ID of the GitHub lookup run these results belong to."},"overallStatus":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"],"description":"The overall status of the lookup run."},"counts":{"type":"object","properties":{"total":{"type":"integer","description":"Total number of people submitted in this run."},"found":{"type":"integer","description":"Number of people for whom a GitHub profile was found."},"notFound":{"type":"integer","description":"Number of people for whom no GitHub profile could be found after searching."},"invalidInput":{"type":"integer","description":"Number of people whose input could not be resolved (e.g. unresolvable LinkedIn URL, insufficient information)."},"failed":{"type":"integer","description":"Number of people whose lookup failed due to a system error."},"pending":{"type":"integer","description":"Number of people still waiting to be processed."}},"required":["total","found","notFound","invalidInput","failed","pending"],"description":"Breakdown of lookup progress. All fields sum to the total number of people in the run."},"people":{"type":"array","items":{"type":"object","properties":{"person":{"type":"object","properties":{"fullName":{"type":"string","description":"The full name of the person."},"company":{"type":["string","null"],"description":"Company provided in the original input."},"jobTitle":{"type":["string","null"],"description":"Job title provided in the original input."},"workEmail":{"type":["string","null"],"description":"Work email provided in the original input."},"linkedInUrl":{"type":["string","null"],"description":"LinkedIn URL provided or resolved from the original input."},"linkedinUserId":{"type":["string","null"],"description":"LinkedIn numeric user ID if provided in the original input."},"customerProvidedId":{"type":["string","null"],"description":"The external ID echoed back from the input for joining results to the original dataset."}},"required":["fullName"],"description":"The original input person."},"githubProfile":{"oneOf":[{"type":"object","properties":{"outcome":{"type":"string","enum":["found"]},"username":{"type":"string","description":"The GitHub username (login) for the matched profile."},"githubUrl":{"type":"string","format":"uri","description":"The GitHub profile URL."},"displayName":{"type":["string","null"],"description":"The user's display name on GitHub."},"profilePictureUrl":{"type":["string","null"],"format":"uri","description":"URL to the user's GitHub profile picture."},"bio":{"type":["string","null"],"description":"One-line summary below the person's name on GitHub."},"location":{"type":["string","null"],"description":"Location as displayed on the GitHub profile."},"numRepositories":{"type":["integer","null"],"description":"Number of public repositories."},"numFollowers":{"type":["integer","null"],"description":"Number of followers on GitHub."},"confidenceOutOf10":{"type":"integer","minimum":1,"maximum":10,"description":"Confidence score between 1 and 10 denoting the match quality."},"rationale":{"type":["string","null"],"description":"Short explanation of why this GitHub profile was matched to the person, referencing details like name, company, or location."}},"required":["outcome","username","githubUrl","confidenceOutOf10"]},{"type":"object","properties":{"outcome":{"type":"string","enum":["notFound"]},"message":{"type":"string","description":"A user-facing explanation of why no profile was found."}},"required":["outcome","message"]},{"type":"object","properties":{"outcome":{"type":"string","enum":["invalidInput"]},"message":{"type":"string","description":"A user-facing explanation of why the lookup could not proceed."}},"required":["outcome","message"]},{"type":"object","properties":{"outcome":{"type":"string","enum":["failed"]},"message":{"type":"string","description":"A user-facing explanation of the failure."}},"required":["outcome","message"]}],"description":"The GitHub lookup result for this person."}},"required":["person","githubProfile"]},"description":"All processed people sorted by outcome (found first). Pending people are not included."}},"required":["githubAgentRunId","overallStatus","counts","people"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/github-to-linkedin/polling":{"post":{"operationId":"githubToLinkedInPolling","summary":"Poll GitHub to LinkedIn lookup","tags":["GitHub"],"description":"Poll for the results of a GitHub to LinkedIn lookup task.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"githubAgentRunId":{"type":"string","description":"The ID of the GitHub to LinkedIn lookup run which you got back from the trigger endpoint."},"cursor":{"type":["string","null"],"description":"The cursor from where to start fetching the next page of results. Provide `nextCursor` from the previous response to continue from there."},"pageSize":{"type":"number","minimum":1,"maximum":100,"default":10,"description":"The number of results to fetch per page."}},"required":["apiKey","githubAgentRunId"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"]},"data":{"type":"array","items":{"type":"object","properties":{"githubUsername":{"type":"string"},"customerProvidedId":{"type":["string","null"]},"status":{"type":"string","enum":["NOT_STARTED","STARTED","DONE","FAILED"]},"linkedInUrl":{"type":["string","null"],"format":"uri"},"linkedInSlug":{"type":["string","null"]},"confidenceOutOf10":{"type":"integer","minimum":0,"maximum":10},"rationale":{"type":["string","null"]},"extractedEmails":{"type":"array","items":{"type":"string"}},"githubProfile":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"company":{"type":["string","null"]},"location":{"type":["string","null"]},"bio":{"type":["string","null"]},"blog":{"type":["string","null"]},"avatarUrl":{"type":["string","null"]},"followers":{"type":["integer","null"]},"publicRepos":{"type":["integer","null"]}}},"errorMessage":{"type":["string","null"]}},"required":["githubUsername","status","confidenceOutOf10","extractedEmails"]},"description":"The list of GitHub to LinkedIn lookup results along with their rationale and confidence scores."},"nextCursor":{"type":["string","null"],"description":"The cursor from where to start fetching the next page of results. Provide `nextCursor` from the previous response to continue from there."},"hasMore":{"type":"boolean","description":"Whether there are more results to fetch for this run."}},"required":["status","data","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/social-media-lookup/polling":{"post":{"operationId":"socialMediaLookupPolling","summary":"Poll social media lookup","tags":["Social media"],"description":"Poll for the results of a social media lookup task.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"socialMediaFinderRunId":{"type":"string","description":"The ID of the social media finder run returned by the trigger endpoint."},"cursor":{"type":["string","null"],"description":"Cursor from the previous response to fetch the next page. Omit for the first page."},"pageSize":{"type":"number","minimum":1,"maximum":100,"default":10,"description":"Number of results to return per page."}},"required":["apiKey","socialMediaFinderRunId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"status":{"type":"string","enum":["pending","in_progress","completed","failed"],"description":"Current status of the lookup run: pending, in_progress, completed, or failed."},"data":{"type":"array","items":{"type":"object","properties":{"fullName":{"type":"string","description":"The full name of the person this result corresponds to."},"customerProvidedId":{"type":["string","null"],"description":"The external ID echoed back from the input for joining results to your original dataset."},"outcome":{"type":["string","null"],"enum":["FOUND_CANDIDATES","NO_CANDIDATES_FOUND","INSUFFICIENT_INFORMATION",null],"description":"Overall outcome: FOUND_CANDIDATES if at least one profile was found, NO_CANDIDATES_FOUND if the search returned nothing, INSUFFICIENT_INFORMATION if there was not enough input to search."},"candidates":{"type":"array","items":{"type":"object","properties":{"platform":{"type":"string","enum":["TWITTER","LINKEDIN","INSTAGRAM","FACEBOOK","TIKTOK","YOUTUBE","THREADS","PINTEREST","BLUESKY","TWITCH","ASK_FM","STEAM","MEDIUM","YELP","TRIPADVISOR","DISCORD","OTHER"],"description":"The social media platform this candidate is for."},"handle":{"type":"string","description":"The handle or username on that platform, without any @ prefix (e.g. 'karpathy')."},"profileUrl":{"type":["string","null"],"format":"uri","description":"Full URL to the profile on that platform (e.g. 'https://x.com/karpathy')."},"displayName":{"type":["string","null"],"description":"The display name shown on the profile."},"bio":{"type":["string","null"],"description":"Profile bio or description."},"location":{"type":["string","null"],"description":"Location as displayed on the profile."},"followerCount":{"type":["integer","null"],"minimum":0,"description":"Number of followers on that platform."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified on that platform."},"confidenceOutOf10":{"type":"integer","minimum":0,"maximum":10,"description":"Confidence score from 0 to 10. Higher scores indicate a stronger match."},"rationale":{"type":["string","null"],"description":"The AI reasoning for why this profile was selected as the best match."}},"required":["platform","handle","confidenceOutOf10"]},"description":"The best-match profiles found, one per platform. Empty if no confident matches were found."},"errorMessage":{"type":["string","null"],"description":"Error message if the lookup failed for this person. Null on success."}},"required":["fullName","candidates"]},"description":"The lookup results for each person in this run."},"nextCursor":{"type":["string","null"],"description":"Cursor for the next page of results. Null if there are no more results."},"hasMore":{"type":"boolean","description":"Whether there are more results to fetch."}},"required":["status","data","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/get-lists":{"post":{"operationId":"getCompanyExclusionLists","summary":"Get company exclusion list","tags":["Exclusions"],"description":"Get company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"listID":{"type":"string","description":"The ID of the company exclusion list."},"name":{"type":"string","description":"The name of the company exclusion list."}},"required":["listID","name"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/create-list":{"post":{"operationId":"createCompanyExclusionList","summary":"Create company exclusion list","tags":["Exclusions"],"description":"Create a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"description":"The name of the company exclusion list."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the company exclusion list is organization-wide."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the company exclusion list."},"name":{"type":"string","description":"The name of the company exclusion list."}},"required":["listId","name"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/delete-list":{"post":{"operationId":"deleteCompanyExclusionList","summary":"Delete company exclusion list","tags":["Exclusions"],"description":"Delete a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listIDs":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"description":"The IDs of the company exclusion lists to delete."}},"required":["apiKey","listIDs"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listIDs":{"type":"array","items":{"type":"string"},"description":"The IDs of the deleted company exclusion lists."}},"required":["listIDs"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/add-to-list":{"post":{"operationId":"addCompaniesToExclusionList","summary":"Add companies to a company exclusion list","tags":["Exclusions"],"description":"Add companies to a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the company exclusion list to add companies to."},"companies":{"type":"array","items":{"type":"object","properties":{"domain":{"type":["string","null"],"description":"A company domain, like 'example.com'."},"linkedinUrl":{"type":["string","null"],"description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'."}}},"maxItems":5000,"description":"The companies to add to the exclusion list. A maximum of 5000 companies can be added at a time. Each entry needs a domain or a LinkedIn company URL; invalid entries are skipped and reported in the response without failing the request."}},"required":["apiKey","listId","companies"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the company exclusion list."},"companiesAdded":{"type":"number","description":"Number of companies added to the exclusion list"},"invalidIdentifiers":{"type":"array","items":{"type":"object","properties":{"input":{"type":"object","properties":{"domain":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]}},"description":"The original entry as submitted."},"reason":{"type":"string","description":"The specific reason this entry could not be added."}},"required":["input","reason"]},"description":"Entries that could not be added because they had no valid company domain or LinkedIn company URL. Valid entries in the same request are still added."}},"required":["listId","companiesAdded","invalidIdentifiers"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/remove-from-list":{"post":{"operationId":"removeCompanyFromExclusionList","summary":"Remove company from company exclusion list","tags":["Exclusions"],"description":"Remove a company from a company exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the company exclusion list to remove the company from."},"excludedCompanyDetails":{"type":"object","properties":{"domains":{"type":["array","null"],"items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"default":[],"description":"Domains of the companies to remove from the exclusion list"},"linkedinUrls":{"type":["array","null"],"items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?<slug>[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"default":[],"description":"LinkedIn URLs of the companies to remove from the exclusion list"}},"description":"Details of the companies to remove from the exclusion list"}},"required":["apiKey","listId","excludedCompanyDetails"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"deletedExcludedCompanies":{"type":"number","description":"Number of companies removed from the exclusion list"}},"required":["deletedExcludedCompanies"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/read-from-list":{"post":{"operationId":"getExcludedCompaniesForExclusionList","summary":"Get excluded companies for exclusion list","tags":["Exclusions"],"description":"Get excluded companies for a specific exclusion list with pagination\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"exclusionListId":{"type":"string","minLength":1,"description":"ID of the company exclusion list"},"cursor":{"type":["string","null"],"description":"Pagination cursor"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of companies to return per page"}},"required":["apiKey","exclusionListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"size":{"type":"number","description":"Total number of excluded companies in the list"},"companies":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"ID of the excluded company"},"domain":{"type":["string","null"],"description":"Domain of the excluded company"},"linkedInUrl":{"type":["string","null"],"description":"LinkedIn URL of the excluded company"},"name":{"type":["string","null"],"description":"Name of the excluded company"}},"required":["id","domain","linkedInUrl","name"]},"description":"List of excluded companies"},"nextCursor":{"type":["string","null"],"description":"Cursor for the next page of results"},"hasMore":{"type":"boolean","description":"Whether there are more results available"}},"required":["size","companies","nextCursor","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/companies/audience/create-list":{"post":{"operationId":"createCompanyExclusionListFromAudience","summary":"Create company exclusion list from audience","tags":["Exclusions"],"description":"This endpoint creates a new company exclusion list by extracting all companies from a specified audience.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"audienceId":{"type":"string","minLength":1,"description":"The ID of the audience to create the exclusion list from."},"name":{"type":["string","null"],"description":"The name of the company exclusion list. Defaults to 'Exclusion list from {audienceName}' if not provided."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the company exclusion list is organization-wide."}},"required":["apiKey","audienceId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the company exclusion list."},"name":{"type":"string","description":"The name of the company exclusion list."},"companiesAdded":{"type":"number","description":"The number of companies added to the exclusion list."}},"required":["listId","name","companiesAdded"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/get-lists":{"post":{"operationId":"getProspectExclusionLists","summary":"Get prospect exclusion lists","tags":["Exclusions"],"description":"Get prospect exclusion lists\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"name":{"type":"string","description":"The name of the prospect exclusion list."}},"required":["listId","name"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/create-list":{"post":{"operationId":"createProspectExclusionList","summary":"Create prospect exclusion list","tags":["Exclusions"],"description":"Create a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"description":"The name of the prospect exclusion list."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the prospect exclusion list is organization-wide."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"name":{"type":"string","description":"The name of the prospect exclusion list."}},"required":["listId","name"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/delete-list":{"post":{"operationId":"deleteProspectExclusionList","summary":"Delete prospect exclusion list","tags":["Exclusions"],"description":"Delete a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listIds":{"type":"array","items":{"type":"string"},"minItems":1,"description":"The IDs of the prospect exclusion lists to delete."}},"required":["apiKey","listIds"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listIds":{"type":"array","items":{"type":"string"},"description":"The IDs of the deleted prospect exclusion lists."}},"required":["listIds"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/add-to-list":{"post":{"operationId":"addProspectsToExclusionList","summary":"Add prospects to a prospect exclusion list","tags":["Exclusions"],"description":"Add prospects to a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the prospect exclusion list to add prospects to."},"prospects":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":["string","null"]}}},"maxItems":5000,"description":"The prospects to add to the exclusion list. A maximum of 5000 prospects can be added at a time."}},"required":["apiKey","listId","prospects"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"prospectsAdded":{"type":"number","description":"Number of prospects added to the exclusion list"}},"required":["listId","prospectsAdded"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/remove-from-list":{"post":{"operationId":"removeProspectFromExclusionList","summary":"Remove prospect from prospect exclusion list","tags":["Exclusions"],"description":"Remove a prospect from a prospect exclusion list\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"listId":{"type":"string","description":"The ID of the prospect exclusion list to remove the prospect from."},"excludedProspectDetails":{"type":"object","properties":{"linkedinUrls":{"type":"array","items":{"type":"string"},"minItems":1,"description":"LinkedIn URLs of the prospects to remove from the exclusion list"}},"required":["linkedinUrls"],"description":"Details of the prospects to remove from the exclusion list"}},"required":["apiKey","listId","excludedProspectDetails"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"deletedExcludedProspectIds":{"type":"array","items":{"type":"string"},"description":"The IDs of the excluded prospects that were removed from the exclusion list."}},"required":["deletedExcludedProspectIds"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/read-from-list":{"post":{"operationId":"getExcludedProspectsForExclusionList","summary":"Get excluded prospects for exclusion list","tags":["Exclusions"],"description":"Get excluded prospects for a specific exclusion list with pagination\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"exclusionListId":{"type":"string","minLength":1,"description":"ID of the prospect exclusion list"},"cursor":{"type":["string","null"],"description":"Pagination cursor"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of prospects to return per page"}},"required":["apiKey","exclusionListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"size":{"type":"number","description":"Total number of excluded profiles in the list"},"prospects":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"ID of the excluded prospect"},"linkedInUrl":{"type":["string","null"],"description":"LinkedIn URL of the excluded prospect"}},"required":["id","linkedInUrl"]},"description":"List of excluded prospects"},"nextCursor":{"type":["string","null"],"description":"Cursor for the next page of results"},"hasMore":{"type":"boolean","description":"Whether there are more results available"}},"required":["size","prospects","nextCursor","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/exclusions/prospects/audience/create-list":{"post":{"operationId":"createProspectExclusionListFromAudience","summary":"Create prospect exclusion list from audience","tags":["Exclusions"],"description":"Create a prospect exclusion list from an audience's prospects\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"audienceId":{"type":"string","minLength":1,"description":"The ID of the audience to create the exclusion list from."},"name":{"type":["string","null"],"description":"The name of the prospect exclusion list. Defaults to 'Exclusion list from {audienceName}' if not provided."},"isOrganizationWide":{"type":"boolean","default":false,"description":"Whether the prospect exclusion list is organization-wide."}},"required":["apiKey","audienceId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"listId":{"type":"string","description":"The ID of the prospect exclusion list."},"name":{"type":"string","description":"The name of the prospect exclusion list."},"prospectsAdded":{"type":"number","description":"The number of prospects added to the exclusion list."}},"required":["listId","name","prospectsAdded"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/regions":{"get":{"operationId":"getRegions","summary":"List countries and regions","tags":["Enums"],"description":"Get a list of all countries and regions supported by the API, along with their names, codes, and additional metadata.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"countries":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The common name of the country."},"apiCode":{"type":"string","description":"The code to use when filtering by this country in the API."},"isoCodeAlpha3":{"type":"string","description":"The ISO 3166-1 alpha-3 country code (e.g. 'USA', 'CAN')."},"isoCodeAlpha2":{"type":"string","description":"The ISO 3166-1 alpha-2 country code (e.g. 'US', 'CA')."},"flag":{"type":"string","description":"The Unicode flag emoji for the country."}},"required":["name","apiCode","isoCodeAlpha3","isoCodeAlpha2","flag"]}},"regions":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The common name of the region."},"apiCode":{"type":"string","description":"The code to use when filtering by this region in the API."},"acronym":{"type":["string","null"],"description":"The short form of the region name, if applicable."},"flag":{"type":"string","description":"The Unicode flag emoji for the region."},"countries":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The common name of the country."},"apiCode":{"type":"string","description":"The code to use when filtering by this country in the API."},"isoCodeAlpha3":{"type":"string","description":"The ISO 3166-1 alpha-3 country code (e.g. 'USA', 'CAN')."},"isoCodeAlpha2":{"type":"string","description":"The ISO 3166-1 alpha-2 country code (e.g. 'US', 'CA')."},"flag":{"type":"string","description":"The Unicode flag emoji for the country."}},"required":["name","apiCode","isoCodeAlpha3","isoCodeAlpha2","flag"]},"description":"The countries included in this region."}},"required":["name","apiCode","countries"],"description":"A multi-country region, as defined by Fiber AI."}}},"required":["countries","regions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/languages":{"get":{"operationId":"getLanguages","summary":"List languages","tags":["Enums"],"description":"Get a list of all languages that you can pass to our API\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"string"},"description":"List of all languages supported by Fiber; uses their full English names."},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/time-zones":{"get":{"operationId":"getTimeZones","summary":"List time zones","tags":["Enums"],"description":"Get a comprehensive list of all available time zones with geographic information, current time data, and UTC offset ranges. Useful for populating time zone filters in search requests.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"timeZoneName":{"type":"string","description":"The IANA timezone identifier (e.g., 'America/New_York')"},"minUtcOffsetMinutes":{"type":"integer","minimum":-840,"maximum":840,"description":"The minimum (most negative) offset from UTC at any point in the year, in minutes. Time zones that observe daylight saving time will have a max offset 60 minutes greater than their min offset."},"maxUtcOffsetMinutes":{"type":"integer","minimum":-840,"maximum":840,"description":"The maximum (most positive) offset from UTC at any point in the year, in minutes. Time zones that observe daylight saving time will have a max offset 60 minutes greater than their min offset."},"continentCode":{"type":["string","null"],"description":"Continent code (e.g., 'NA' for North America)"},"continentName":{"type":["string","null"],"description":"Continent name (e.g., 'North America')"},"countryName":{"type":["string","null"],"description":"Country name (e.g., 'United States')"},"countryCodeAlpha2":{"type":["string","null"],"description":"The ISO 3166-1 alpha-2 country code (e.g. 'US')."},"mainCities":{"type":"array","items":{"type":"string"},"description":"Major cities in this timezone"},"alternativeName":{"type":"string","description":"Alternative/common name for the timezone"},"subZones":{"type":"array","items":{"type":"string"},"description":"Related timezone variants that share geographic proximity or similar time offset behaviors (e.g., Mountain Time zones in British Columbia: 'America/Creston', 'America/Dawson_Creek', 'America/Fort_Nelson')"},"currentUtcOffsetMinutes":{"type":"integer","minimum":-840,"maximum":840,"description":"Current UTC offset in minutes"},"currentLocalTime":{"type":"string","description":"Current time in this timezone, formatted as an ISO 8601 string."},"abbreviation":{"type":"string","description":"Current timezone abbreviation (e.g., 'EST', 'PDT')"},"displayName":{"type":"string","description":"Human-friendly display name"},"isDaylightSaving":{"type":"boolean","description":"Whether the time zone is currently observing daylight saving time."}},"required":["timeZoneName","minUtcOffsetMinutes","maxUtcOffsetMinutes","mainCities","alternativeName","subZones","currentUtcOffsetMinutes","currentLocalTime","abbreviation","displayName","isDaylightSaving"]},"description":"The list of all available time zones with comprehensive information."},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/industries":{"get":{"operationId":"getIndustries","summary":"List industries","tags":["Enums"],"description":"Get lists of various industry categorizations. Useful for our company search API.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"fiberIndustries":{"type":"array","items":{"type":"string"},"description":"Fiber's standardized list of industries"},"linkedinIndustries":{"type":"array","items":{"type":"string"},"description":"LinkedIn's list of industries"}},"required":["fiberIndustries","linkedinIndustries"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/tags":{"get":{"operationId":"getTags","summary":"List profile and company tags","tags":["Enums"],"description":"Get a list of all profile and company tags that you can use to filter searches in our API, along with their descriptions.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profileTags":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]},"name":{"type":"string"},"description":{"type":["string","null"]},"emoji":{"type":"string"}},"required":["slug","name","emoji"]},"description":"List of all available profile tags"},"companyTags":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]},"name":{"type":"string"},"description":{"type":["string","null"]},"emoji":{"type":"string"}},"required":["slug","name","emoji"]},"description":"List of all available company tags"}},"required":["profileTags","companyTags"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/naics-codes":{"get":{"operationId":"getNaicsCodes","summary":"List NAICS codes","tags":["Enums"],"description":"Get all NAICS (North American Industry Classification System) codes from the 2017 version. Returns each code and its corresponding title.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"naicsCodes":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"The NAICS code identifier."},"title":{"type":"string","description":"The title of the NAICS code."}},"required":["code","title"]},"description":"The list of all NAICS 2017 codes with their titles."}},"required":["naicsCodes"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/accelerators":{"get":{"operationId":"getAccelerators","summary":"List accelerators","tags":["Enums"],"description":"Get a list of all accelerators with their metadata, total company counts, and statistics broken down by batch and year. Useful for filtering accelerator data in search APIs.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"acceleratorSlug":{"type":"string","description":"The accelerator identifier (e.g., 'y_combinator')"},"acceleratorName":{"type":"string","description":"The human-readable accelerator name (e.g., 'Y Combinator')"},"numCompanies":{"type":"integer","minimum":0,"description":"Total number of companies in this accelerator"},"batches":{"type":["array","null"],"items":{"type":"object","properties":{"batch":{"type":"string","description":"The batch name (e.g., 'Winter 2023', 'Spring 2025')"},"numCompanies":{"type":"integer","minimum":0,"description":"Number of companies in this batch for this accelerator"}},"required":["batch","numCompanies"]},"description":"List of batches with company counts for this accelerator. Null if the accelerator doesn't use batches."},"years":{"type":["array","null"],"items":{"type":"object","properties":{"year":{"type":"integer","minimum":2000,"maximum":2027,"description":"The year the companies participated in the accelerator"},"numCompanies":{"type":"integer","minimum":0,"description":"Number of companies in this year for this accelerator"}},"required":["year","numCompanies"]},"description":"List of years with company counts for this accelerator. Null if the accelerator doesn't track years."},"logoUrl":{"type":["string","null"],"description":"URL to the accelerator's logo image"},"website":{"type":["string","null"],"description":"The accelerator's website URL (includes https:// and www. if applicable)"},"otherNames":{"type":["array","null"],"items":{"type":"string"},"description":"Alternate names for the accelerator (e.g., 'YC' for 'Y Combinator')"}},"required":["acceleratorSlug","acceleratorName","numCompanies"]},"description":"List of all accelerators with their metadata and company statistics"},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/subdivisions":{"get":{"operationId":"getSubdivisions","summary":"List subdivisions by country","tags":["Enums"],"description":"Get a list of subdivisions (states, provinces, Länder, etc.) for a given country, identified by ISO 3166-1 alpha-2 or alpha-3 code.\n\n<span>⚡ <strong>Rate limit:</strong> 250 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":2,"maxLength":3},"in":"query","name":"countryCode","required":true,"description":"ISO 3166-1 alpha-2 (e.g. 'US') or alpha-3 (e.g. 'USA') country code. Use GET /enums/regions to look up codes by country name."}],"x-rate-limit":{"max":250,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"countryCode":{"type":"string","description":"The alpha-3 country code that was queried."},"subdivisions":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"The subdivision code without the country prefix (e.g. 'CA' for California, 'MH' for Maharashtra)."},"name":{"type":"string","description":"The official name of the subdivision."},"type":{"type":"string","description":"The type of subdivision (e.g. 'State', 'Province', 'Land')."},"alternateNames":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The alternate name."},"languageCode":{"type":"string","description":"The ISO 639 language code (e.g. 'eng', 'hin', 'deu')."}},"required":["name","languageCode"]},"description":"The alternate or local names for the subdivision."}},"required":["code","name","type","alternateNames"]}}},"required":["countryCode","subdivisions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/technologies":{"get":{"operationId":"getTechnologies","summary":"List technologies","tags":["Enums"],"description":"Get all searchable technologies and platforms with their synonyms. Useful for the technology search API.\n\n<span>⚡ <strong>Rate limit:</strong> 50 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":50,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"technology":{"type":"string","minLength":1,"description":"Canonical slug for this technology or platform"},"synonyms":{"type":"array","items":{"type":"string","minLength":1},"description":"Human-readable names and variants"},"category":{"type":["string","null"],"description":"Technology category (e.g. CMS, CRM, Analytics)"},"type":{"type":"string","enum":["technology","platform"],"description":"Whether this is a technology or a platform"}},"required":["technology","synonyms","type"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/skills":{"get":{"operationId":"getSkills","summary":"List skills","tags":["Enums"],"description":"Get the most common professional skills across profiles. Returns up to 1,000 skill names sorted by popularity. Useful for building skill-based search filters.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"string","minLength":1,"description":"A professional skill name"}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/enums/flight-regions":{"get":{"operationId":"getFlightRegions","summary":"List flight region aliases","tags":["Enums"],"description":"List every supported `X-` flight region alias along with its metro name and the IATA airport codes it covers. Pass `apiCode` as `departureAirports` / `arrivalAirports` in `POST /v1/flights/search` to search across an entire metro area in one call.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"regions":{"type":"array","items":{"type":"object","properties":{"apiCode":{"type":"string","description":"Alias to use as `departureAirports` / `arrivalAirports` to target this entire metro (e.g. 'X-NYC')."},"name":{"type":"string","description":"Human-readable metro name (e.g. 'New York City')."},"airportIataCodes":{"type":"array","items":{"type":"string","pattern":"^[A-Z]{3}$"},"minItems":1,"description":"IATA codes covered by this metro alias (e.g. 'JFK', 'LGA', 'EWR')."},"freebaseId":{"type":"string","pattern":"^\\/(?:m|g)\\/[A-Za-z0-9_]+$","description":"Stable identifier for this metro. Also accepted as `departureAirports` / `arrivalAirports`."}},"required":["apiCode","name","airportIataCodes","freebaseId"],"description":"A flight region alias covering one metropolitan area's airports."},"minItems":1,"description":"All supported flight region aliases."}},"required":["regions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/create":{"post":{"operationId":"createAudience","summary":"Create a new audience","tags":["Audiences"],"description":"Creates a new audience in DRAFT status. After creation, use the update-search-params endpoint to set filters, then use the build endpoint to populate the audience with companies and prospects.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"maxLength":200,"description":"The name of the audience (e.g. 'Fintech VPs in NYC')."},"creationMethod":{"type":["string","null"],"enum":["NORMAL","START_FROM_PROSPECTS",null],"default":"NORMAL","description":"How the audience will be created. NORMAL: search companies then prospects. START_FROM_PROSPECTS: search prospects only."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the created audience."},"name":{"type":"string","description":"The name of the audience."},"status":{"type":"string","enum":["NORMAL","HEALING_COMPANIES","DRAFT","BUILDING","SAVING_COMPANIES","SAVING_PROSPECTS","LINKING_PROSPECTS_WITH_COMPANIES","FAILED"],"description":"The current status of the audience."},"createdAt":{"type":"string","description":"The timestamp when the audience was created."}},"required":["audienceId","name","status","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}":{"get":{"operationId":"getAudienceStatus","summary":"Get audience status","tags":["Audiences"],"description":"Gets the status and basic statistics of an audience. Use this to poll for build completion after triggering a build. Status values: DRAFT (waiting for configuration), BUILDING (search in progress), NORMAL (ready to use), FAILED (build failed). Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the audience."},"name":{"type":"string","description":"The name of the audience."},"status":{"type":"string","enum":["NORMAL","HEALING_COMPANIES","DRAFT","BUILDING","SAVING_COMPANIES","SAVING_PROSPECTS","LINKING_PROSPECTS_WITH_COMPANIES","FAILED"],"description":"The current status of the audience."},"creationMethod":{"type":"string","enum":["NORMAL","COMPANY_UPLOAD","PROSPECT_UPLOAD","START_FROM_PROSPECTS","FOLLOW_ME","INDIVIDUAL_SALES_NAV_SCRAPE","MERGE_AUDIENCES","BATCH_ENRICHMENT","CLONED","SALES_NAV_COMPANIES","SALES_NAV_PROFILES"],"description":"The method used to create the audience."},"createdAt":{"type":"string","description":"The timestamp when the audience was created."},"buildingStartedAt":{"type":["string","null"],"description":"The timestamp when the audience build started."},"buildingFinishedAt":{"type":["string","null"],"description":"The timestamp when the audience build finished."},"companiesCount":{"type":["number","null"],"description":"The number of companies in the audience."},"prospectsCount":{"type":["number","null"],"description":"The number of prospects in the audience."}},"required":["audienceId","name","status","creationMethod","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"delete":{"operationId":"deleteAudience","summary":"Archive an audience","tags":["Audiences"],"description":"Archives an audience by hiding it from the user. The audience and its data are preserved for audit trail and enrichment history. Audiences that are currently BUILDING cannot be archived. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The ID of the archived audience."},"archived":{"type":"boolean","description":"Whether the audience was successfully archived.","enum":[true]}},"required":["audienceId","archived"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences":{"get":{"operationId":"listAudiences","summary":"List all audiences","tags":["Audiences"],"description":"Lists all audiences for your organization. Returns basic info and counts for each audience. Only visible audiences are returned (hidden system audiences are excluded). Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audiences":{"type":"array","items":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the audience."},"name":{"type":"string","description":"The name of the audience."},"status":{"type":"string","enum":["NORMAL","HEALING_COMPANIES","DRAFT","BUILDING","SAVING_COMPANIES","SAVING_PROSPECTS","LINKING_PROSPECTS_WITH_COMPANIES","FAILED"],"description":"The current status of the audience."},"creationMethod":{"type":"string","enum":["NORMAL","COMPANY_UPLOAD","PROSPECT_UPLOAD","START_FROM_PROSPECTS","FOLLOW_ME","INDIVIDUAL_SALES_NAV_SCRAPE","MERGE_AUDIENCES","BATCH_ENRICHMENT","CLONED","SALES_NAV_COMPANIES","SALES_NAV_PROFILES"],"description":"The method used to create the audience."},"createdAt":{"type":"string","description":"The timestamp when the audience was created."},"companiesCount":{"type":"number","description":"The number of companies in the audience."},"prospectsCount":{"type":"number","description":"The number of prospects in the audience."}},"required":["audienceId","name","status","creationMethod","createdAt","companiesCount","prospectsCount"]}},"totalCount":{"type":"number","description":"The total number of audiences."}},"required":["audiences","totalCount"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/companies":{"get":{"operationId":"getAudienceCompanies","summary":"Get companies in an audience","tags":["Audiences"],"description":"Gets the companies in an audience with pagination. Use the nextCursor from the response to fetch the next page. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"integer","exclusiveMinimum":0,"maximum":500,"default":100},"in":"query","name":"pageSize","description":"The number of companies to return per page (max 500)."},{"schema":{"type":["string","null"]},"in":"query","name":"cursor","description":"The pagination cursor from the previous page."},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The ID of the audience."},"companies":{"type":"array","items":{"type":"object","properties":{"companyId":{"type":"string","description":"The unique ID of the company."},"name":{"type":["string","null"],"description":"The company name."},"linkedinUrl":{"type":["string","null"],"description":"The company LinkedIn URL."},"domain":{"type":["string","null"],"description":"The company domain."},"industry":{"type":["string","null"],"description":"The company industry."},"headcount":{"type":["number","null"],"description":"The employee count."}},"required":["companyId"]},"description":"The list of companies."},"totalCount":{"type":"number","description":"The total number of companies in the audience."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page."},"hasMore":{"type":"boolean","description":"Whether there are more results available."}},"required":["audienceId","companies","totalCount","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/prospects":{"get":{"operationId":"getAudienceProspects","summary":"Get prospects in an audience","tags":["Audiences"],"description":"Gets the prospects (people) in an audience with pagination. Use the nextCursor from the response to fetch the next page. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"integer","exclusiveMinimum":0,"maximum":500,"default":100},"in":"query","name":"pageSize","description":"The number of prospects to return per page (max 500)."},{"schema":{"type":["string","null"]},"in":"query","name":"cursor","description":"The pagination cursor from the previous page."},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The ID of the audience."},"prospects":{"type":"array","items":{"type":"object","properties":{"prospectId":{"type":"string","description":"The unique ID of the prospect."},"firstName":{"type":["string","null"],"description":"The prospect's first name."},"lastName":{"type":["string","null"],"description":"The prospect's last name."},"linkedinUrl":{"type":["string","null"],"description":"The prospect's LinkedIn URL."},"jobTitle":{"type":["string","null"],"description":"The prospect's job title."},"companyName":{"type":["string","null"],"description":"The prospect's current company name."},"location":{"type":["string","null"],"description":"The prospect's location."}},"required":["prospectId"]},"description":"The list of prospects."},"totalCount":{"type":"number","description":"The total number of prospects in the audience."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page."},"hasMore":{"type":"boolean","description":"Whether there are more results available."}},"required":["audienceId","prospects","totalCount","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/search-params":{"patch":{"operationId":"updateAudienceSearchParams","summary":"Set audience search parameters","tags":["Audiences"],"description":"Updates the search parameters (filters) for an audience. You can set company filters (e.g., industry, headcount) and prospect filters (e.g., job title, location). This endpoint converts the API-friendly search parameters into the internal format used by the search engine. The audience must be in DRAFT status.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]},"upperBoundInclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The search parameters to filter companies."},"prospectSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The search parameters to filter prospects.","default":{}}},"required":["apiKey"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the audience."},"companySearchParams":{"type":["object","null"],"additionalProperties":true,"description":"The updated company search parameters."},"prospectSearchParams":{"type":["object","null"],"additionalProperties":true,"description":"The updated prospect search parameters."}},"required":["audienceId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/enrichment/status":{"get":{"operationId":"getEnrichmentStatus","summary":"Get enrichment status","tags":["Audiences"],"description":"Gets the current status of an audience enrichment run. Returns progress information including current stage, progress percentage, completed steps, and remaining steps. Use this endpoint to poll for enrichment completion. Pass your apiKey in the query string.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"enrichmentId":{"type":"string","description":"The unique ID of the enrichment run."},"currentStage":{"type":"string","enum":["NOT_STARTED","STARTED","RUNNING_SALES_NAV","RUNNING_LIVE_ENRICH","RESUBMITTING_AUDIENCE","CLEANING_NAMES","FETCHING_CONTACT_DETAILS","VALIDATING_CONTACT_DETAILS","EXPORTING_CSV","DONE","FAILED"],"description":"The current stage of the enrichment process."},"progressPercent":{"type":"number","minimum":0,"maximum":100,"description":"The progress percentage (0-100)."},"stepsCompleted":{"type":"array","items":{"type":"string"},"description":"The list of completed step names."},"currentStep":{"type":["string","null"],"description":"The name of the current step being executed."},"stepsRemaining":{"type":"array","items":{"type":"string"},"description":"The list of remaining step names."},"createdAt":{"type":"string","description":"The timestamp when the enrichment was created."},"completedAt":{"type":["string","null"],"description":"The timestamp when the enrichment completed."}},"required":["enrichmentId","currentStage","progressPercent","stepsCompleted","stepsRemaining","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/enrichment/estimate":{"post":{"operationId":"estimateEnrichmentCost","summary":"Estimate enrichment cost","tags":["Audiences"],"description":"Estimates the credit cost for an audience enrichment run before triggering it. Returns detailed breakdown by operation type (Sales Navigator, live enrichment, contact enrichment, validation) and estimated completion time. This endpoint is free and does not charge any credits.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"maxProspectsToEnrich":{"type":"integer","exclusiveMinimum":0,"description":"Maximum number of prospects to include when estimating enrichment cost (must be a positive integer; very large values may be rejected by internal safety limits)."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"Enrichment types to estimate costs for"},"runCompanyLiveEnrichment":{"type":"boolean","default":true,"description":"Whether to include company live enrichment in estimate"},"runProfileLiveEnrichment":{"type":"boolean","default":true,"description":"Whether to include profile live enrichment in estimate"},"runProfileSalesNav":{"type":"boolean","default":true,"description":"Whether to include Sales Navigator enrichment in estimate"},"runContactEnrichment":{"type":"boolean","default":true,"description":"Whether to include contact enrichment in estimate"}},"required":["apiKey","maxProspectsToEnrich","enrichmentType"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"totalCredits":{"type":"number","description":"The total estimated credits required."},"breakdown":{"type":"object","properties":{"salesNav":{"type":"object","properties":{"credits":{"type":"number"},"isFree":{"type":"boolean"}},"required":["credits","isFree"],"description":"Sales Navigator enrichment cost"},"liveCompany":{"type":"object","properties":{"credits":{"type":"number"},"discounted":{"type":"boolean"}},"required":["credits","discounted"],"description":"Company live enrichment cost"},"liveProspect":{"type":"object","properties":{"credits":{"type":"number"},"discounted":{"type":"boolean"}},"required":["credits","discounted"],"description":"Prospect live enrichment cost"},"waterfall":{"type":"object","properties":{"credits":{"type":"number"},"originalCredits":{"type":"number"},"discount":{"type":"number"},"operations":{"type":"object","properties":{"workEmail":{"type":"number"},"personalEmail":{"type":"number"},"phone":{"type":"number"}},"required":["workEmail","personalEmail","phone"]}},"required":["credits","originalCredits","discount","operations"],"description":"Waterfall pricing for contact enrichment"},"validation":{"type":"object","properties":{"credits":{"type":"number"},"isFree":{"type":"boolean"}},"required":["credits","isFree"],"description":"Email validation cost"}},"required":["salesNav","liveCompany","liveProspect","waterfall","validation"],"description":"The detailed cost breakdown by operation type."},"timeEstimate":{"type":"object","properties":{"totalSeconds":{"type":"number"},"formatted":{"type":"string"}},"required":["totalSeconds","formatted"],"description":"The estimated time to complete enrichment."}},"required":["totalCredits","breakdown","timeEstimate"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/export/companies":{"post":{"operationId":"exportCompanies","summary":"Export audience companies to CSV","tags":["Audiences"],"description":"Triggers CSV export of companies in an audience. The export runs asynchronously - CSV links will be sent to the provided email address (if userEmail is provided) or returned in the API response. Export quota limits apply per usage period.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"format":{"type":"string","enum":["PROSPECT_GENERIC_CSV","PROSPECT_LI_ADS_CSV","PROSPECT_GOOGLE_ADS_CSV","PROSPECT_META_ADS_CSV","COMPANY_GENERIC_CSV","COMPANY_LI_ADS_CSV","LI_PROFILE_URL_FIXUP","LI_COMPANY_URL_FIXUP","GOOGLE_MAPS_CSV","DOMAIN_AGENT_CSV"],"description":"The format of the exported file."},"maxRowsToExport":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of rows to export. Defaults to remaining export quota."},"excludeFields":{"type":"array","items":{"type":"string","enum":["fiber_id","name","all_names","website","domain","linkedin_url","linkedin_org_id","logo_url","headline","description","standard_industries","linkedin_industries","naics_codes","hq_full_address","hq_street_address","hq_city","hq_state","hq_country","hq_country_code","hq_latitude","hq_longitude","num_offices","all_office_addresses","office_countries","category","employee_count_lower","employee_count_upper","founded_on","num_followers","office_locations","office_locations_raw","funding_stage","last_funded_at","last_funding_usd","total_funding_usd","market_cap_usd","revenue_usd","accelerators","investors","acquisitions","funding_rounds","stock_ticker","num_exits","tags","job_posting_stats","specialties","phone_numbers","facebook_urls","x_urls","github_usernames","wellfound_urls","blog_urls","instagram_urls","youtube_urls","short_description","long_description","roles","primary_role","is_subsidiary","parent","matching_job_posting_urls","matching_job_postings_json","matching_job_postings_titles","num_matching_job_postings","num_role_matches","custom"]},"default":[],"description":"The fields to exclude from the export."},"userEmail":{"type":["string","null"],"format":"email","description":"Optional email address to receive CSV export links. If not provided, no email will be sent."}},"required":["apiKey","format"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"message":{"type":"string","description":"A human-readable message about the export status."},"estimatedRows":{"type":"number","description":"The estimated number of rows that will be exported."},"maxRowsAllowed":{"type":"number","description":"The maximum rows allowed based on the export quota."}},"required":["message","estimatedRows","maxRowsAllowed"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/export/prospects":{"post":{"operationId":"exportProspects","summary":"Export audience prospects to CSV","tags":["Audiences"],"description":"Triggers CSV export of prospects (people) in an audience. The export runs asynchronously - CSV links will be sent to the provided email address (if userEmail is provided) or returned in the API response. Export quota limits apply per usage period. Optionally filter to only export prospects with verified emails or phones.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"format":{"type":"string","enum":["PROSPECT_GENERIC_CSV","PROSPECT_LI_ADS_CSV","PROSPECT_GOOGLE_ADS_CSV","PROSPECT_META_ADS_CSV","COMPANY_GENERIC_CSV","COMPANY_LI_ADS_CSV","LI_PROFILE_URL_FIXUP","LI_COMPANY_URL_FIXUP","GOOGLE_MAPS_CSV","DOMAIN_AGENT_CSV"],"description":"The format of the exported file."},"maxRowsToExport":{"type":["integer","null"],"exclusiveMinimum":0,"description":"Maximum number of rows to export. Defaults to remaining export quota."},"excludeFields":{"type":"array","items":{"type":"string","enum":["fiber_id","first_name","last_name","full_name","profile_url","company","company_domain","company_description","company_linkedin_url","work_location","employment_type","job_title","headline","summary","job_summary","job_start_date","months_in_current_job","months_in_current_company","city","state","country","country_code","timezone","latitude","longitude","work_email_1","work_email_2","personal_email_1","personal_email_2","other_emails","emails_verified","phone_number_1","phone_number_2","other_phone_numbers","profile_pic_url","num_followers","num_connections","age","education","years_of_experience","num_jobs","past_jobs","languages","tags","skills","tenures","industry","past_jobs_raw","job_academic_qualifications","job_seniority","job_function","certifications","certifications_raw","patents","patents_raw","articles","articles_raw","num_recommendations_received","volunteering","volunteering_raw","projects","projects_raw","tenures_raw","courses","courses_raw","is_in_stealth","publications","publications_raw","company_hq_city","company_hq_state","company_hq_country","company_hq_country_code","company_hq_latitude","company_hq_longitude","company_stock_ticker","company_employee_trends","company_founding_date","company_employee_count_lower","company_employee_count_upper","company_industries","company_num_followers","company_naics_codes","company_funding_rounds","company_funding_stage","company_total_funding_usd","company_last_funded_at","company_last_funding_usd","company_revenue_usd","company_investors","company_tags","company_market_cap_usd","company_office_countries","company_num_offices","company_accelerators","company_job_posting_stats","custom"]},"default":[],"description":"The fields to exclude from the export."},"onlyWithContacts":{"type":"boolean","default":false,"description":"If true, only export prospects with verified emails or phones"},"userEmail":{"type":["string","null"],"format":"email","description":"Optional email address to receive CSV export links. If not provided, no email will be sent."}},"required":["apiKey","format"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"message":{"type":"string","description":"A human-readable message about the export status."},"estimatedRows":{"type":"number","description":"The estimated number of rows that will be exported."},"maxRowsAllowed":{"type":"number","description":"The maximum rows allowed based on the export quota."}},"required":["message","estimatedRows","maxRowsAllowed"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-search":{"post":{"operationId":"companySearch","summary":"Company search","tags":["Search"],"description":"Search for companies using filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per company found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]},"upperBoundInclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Search parameters for company search API."},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of companies to return per page."},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results."},"companyExclusionListIDs":{"type":"array","items":{"type":"string"},"default":[],"description":"The IDs of company exclusion lists to filter out matching companies."},"includeCount":{"type":["boolean","null"],"description":"When true, returns an estimated total count of matching companies in the response. The count does not account for exclusion lists."}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per company found","variableCosts":[{"credits":1,"perUnit":"company found","operation":"getCompanyFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}}},"estimatedCount":{"type":["number","null"],"description":"The estimated total number of companies who match your search parameters. Note that this does not account for exclusion lists."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page. Provide this in the next request to continue paginating."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-count":{"post":{"operationId":"companyCount","summary":"Company count","tags":["Search"],"description":"Get count of companies matching search filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]},"upperBoundInclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Search parameters for company search API."},"companyExclusionListIDs":{"type":"array","items":{"type":"string"},"default":[],"description":"The IDs of company exclusion lists to filter out matching companies."}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getCompanyCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"count":{"type":"number","description":"The number of companies matching the search filters."}},"required":["count"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-search":{"post":{"operationId":"jobPostingSearch","summary":"Job postings search","tags":["Search"],"description":"Search for job postings with flexible filtering capabilities\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per job posting found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"companies":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"array","items":{"type":"string","minLength":1},"description":"Array of LinkedIn company slugs (e.g., ['microsoft'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"array","items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"description":"Array of company domains (e.g., ['microsoft.com'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"array","items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?<slug>[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"description":"Array of LinkedIn company URLs, e.g., https://www.linkedin.com/company/microsoft/"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"array","items":{"type":"string","pattern":"^\\d+$","description":"A LinkedIn organization ID (numeric string), e.g., '1035' for Microsoft"},"description":"Array of LinkedIn organization IDs (numeric strings), e.g., '1035' for Microsoft"}},"required":["identifier","value"]},{"type":"null"}],"description":"Filter jobs by one type of company identifier with array values"},"title":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"Array of job titles for partial match (e.g., 'Software Engineer', 'Manager')"},"isActive":{"type":["string","null"],"enum":["true","false","no_preference",null],"description":"Filter by job status: true=active, false=closed, no_preference=both"},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Filter by job posting date (supports relative and absolute dates)"},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by number of applicants (range)"},"jobFunctions":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"description":"Array of job functions"},"industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"description":"Array of industries"},"annualSalaryUsd":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by annual salary range in USD"},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by years of experience required"},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"description":"Array of work location types"},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"description":"Array of employment types (e.g., Full-time, Part-time, Contract, Internship)"},"seniorityLevel":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive"]},"description":"Array of seniority levels (e.g., Entry level, Mid-Senior level, Director)"},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]},"description":"Array of country or region codes (e.g., USA, IND, X-ANGLOSPHERE)"}},"additionalProperties":false,"description":"Job search filter parameters"},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of jobs to return per page (max 1000)"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching next page of results"}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per job posting found","variableCosts":[{"credits":1,"perUnit":"job posting found","operation":"getJobPostingFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"job_id":{"type":"string","description":"Unique job identifier"},"title":{"type":["string","null"],"description":"Job title/position"},"company_name":{"type":["string","null"],"description":"Company name"},"company_logo_url":{"type":["string","null"],"format":"uri","description":"Company logo URL"},"posted_at":{"type":["string","null"],"description":"When the job was posted"},"job_url":{"type":["string","null"],"format":"uri","description":"LinkedIn job URL"},"applicant_range":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}},"description":"Applicant count range"},"description":{"type":["string","null"],"description":"Job description text"},"seniority_level":{"type":["string","null"],"description":"Seniority level (e.g., 'Entry level', 'Senior level')"},"employment_type":{"type":["string","null"],"description":"Employment type (e.g., 'Full-time', 'Part-time')"},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"description":"Job function categories"},"raw_industries":{"type":["string","null"],"description":"Raw industries string from LinkedIn"},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"description":"Standardized industry categories"},"compensation_range":{"type":["object","null"],"properties":{"lte":{"type":["object","null"],"properties":{"currencyUnit":{"type":"string","description":"These are just currency symbols, like CA$ or £"},"number":{"type":"number"},"period":{"type":"string","enum":["hr","m","yr","daily"]}},"required":["currencyUnit","number","period"]},"gte":{"type":["object","null"],"properties":{"currencyUnit":{"type":"string","description":"These are just currency symbols, like CA$ or £"},"number":{"type":"number"},"period":{"type":"string","enum":["hr","m","yr","daily"]}},"required":["currencyUnit","number","period"]}},"description":"Structured compensation range with currency and period"},"annual_salary_usd":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}},"description":"Annual salary approximation in USD"},"years_of_experience":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}},"description":"Years of experience required"},"standardized_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}},"description":"Standardized location with geo data including lat/lon"},"job_location_type":{"type":["string","null"],"enum":["On-site","Remote","Hybrid",null],"description":"Work location type"},"status":{"type":"string","enum":["active","closed"],"description":"Job status"}},"required":["job_id","status"]},"description":"Array of job postings matching the search criteria"},"nextCursor":{"type":["string","null"],"description":"Cursor for fetching the next page of results. Null if no more results available"}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-search/count":{"post":{"operationId":"jobPostingSearchCount","summary":"Job postings count","tags":["Search"],"description":"Get count of job postings matching search filters\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"companies":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"array","items":{"type":"string","minLength":1},"description":"Array of LinkedIn company slugs (e.g., ['microsoft'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"array","items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"description":"Array of company domains (e.g., ['microsoft.com'])"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"array","items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?<slug>[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"description":"Array of LinkedIn company URLs, e.g., https://www.linkedin.com/company/microsoft/"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"array","items":{"type":"string","pattern":"^\\d+$","description":"A LinkedIn organization ID (numeric string), e.g., '1035' for Microsoft"},"description":"Array of LinkedIn organization IDs (numeric strings), e.g., '1035' for Microsoft"}},"required":["identifier","value"]},{"type":"null"}],"description":"Filter jobs by one type of company identifier with array values"},"title":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"Array of job titles for partial match (e.g., 'Software Engineer', 'Manager')"},"isActive":{"type":["string","null"],"enum":["true","false","no_preference",null],"description":"Filter by job status: true=active, false=closed, no_preference=both"},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Filter by job posting date (supports relative and absolute dates)"},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by number of applicants (range)"},"jobFunctions":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"description":"Array of job functions"},"industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"description":"Array of industries"},"annualSalaryUsd":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by annual salary range in USD"},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}},"description":"Filter by years of experience required"},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]},"description":"Array of work location types"},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"description":"Array of employment types (e.g., Full-time, Part-time, Contract, Internship)"},"seniorityLevel":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive"]},"description":"Array of seniority levels (e.g., Entry level, Mid-Senior level, Director)"},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]},"description":"Array of country or region codes (e.g., USA, IND, X-ANGLOSPHERE)"}},"additionalProperties":false,"description":"Job search filter parameters"}},"required":["apiKey","searchParams"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getJobPostingCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"totalJobsFound":{"type":"integer","minimum":0,"description":"Total number of jobs matching the search criteria"}},"required":["totalJobsFound"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/people-search":{"post":{"operationId":"peopleSearch","summary":"People search","tags":["Search"],"description":"Search for people using filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per profile found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Search parameters for people search.","default":{}},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"The number of profiles to return, if you need to get more results, you can paginate."},"cursor":{"type":["string","null"],"description":"A pagination cursor returned from a previous search response. Use this to fetch the next page of results."},"currentCompanies":{"type":["array","null"],"items":{"type":"object","properties":{"domain":{"type":["string","null"],"description":"Company domain, like 'google.com'. Don't include 'https://', path fragments like '/about', or URL query parameters. If provided, we will not strip them out. This may be useful if your company page is like `instagram.com/google`."},"linkedinSlugOrURL":{"type":["string","null"],"description":"The company's linkedin slug or URL"},"name":{"type":["string","null"],"description":"The company's name as present in LinkedIn. This would do partial matches as well, eg. `Fiber AI` matches with `Fiber AI (YC S23)`. Try not to rely on this field as it will simply be doing a loose name match. We recommend that you use the domain or LI slug if available."},"linkedinOrgID":{"type":["string","null"],"description":"The company's LinkedIn Organization ID, eg. 1441 for google"}}},"maxItems":10000,"default":[],"description":"Filter people by the companies they are currently working for. If you want to search over many companies, we suggest using the Combined Search API, which is optimized for this use case."},"prospectExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people which belong to the given prospect exclusion lists"},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people who work at companies which belong to the given company exclusion lists"},"includeCount":{"type":["boolean","null"],"description":"When true, returns an estimated total count of matching prospects in the response. The count does not account for exclusion lists."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per profile found","variableCosts":[{"credits":1,"perUnit":"profile found","operation":"getPersonFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"estimatedCount":{"type":["number","null"],"description":"The estimated total number of people who match your search parameters. Note that this does not account for exclusion lists."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page. Provide this in the next request to continue paginating."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/people-search/count":{"post":{"operationId":"peopleSearchCount","summary":"People search count","tags":["Search"],"description":"Get count of profiles matching search filters\n\n<span>⚡ <strong>Rate limit:</strong> 180 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Search parameters for people search.","default":{}},"currentCompanies":{"type":["array","null"],"items":{"type":"object","properties":{"domain":{"type":["string","null"],"description":"Company domain, like 'google.com'. Don't include 'https://', path fragments like '/about', or URL query parameters. If provided, we will not strip them out. This may be useful if your company page is like `instagram.com/google`."},"linkedinSlugOrURL":{"type":["string","null"],"description":"The company's linkedin slug or URL"},"name":{"type":["string","null"],"description":"The company's name as present in LinkedIn. This would do partial matches as well, eg. `Fiber AI` matches with `Fiber AI (YC S23)`. Try not to rely on this field as it will simply be doing a loose name match. We recommend that you use the domain or LI slug if available."},"linkedinOrgID":{"type":["string","null"],"description":"The company's LinkedIn Organization ID, eg. 1441 for google"}}},"maxItems":10000,"default":[],"description":"Filter people by the companies they are currently working for. If you want to search over many companies, we suggest using the Combined Search API, which is optimized for this use case."},"prospectExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people which belong to the given prospect exclusion lists"},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"default":[],"description":"Filter out people who work at companies which belong to the given company exclusion lists"},"includeCount":{"type":["boolean","null"],"description":"When true, returns an estimated total count of matching prospects in the response. The count does not account for exclusion lists."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":180,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getPersonCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"totalProfilesFound":{"type":"integer","minimum":0,"description":"Total number of profiles matching the search criteria including exclusion lists"}},"required":["totalProfilesFound"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/combined-search/paginated":{"post":{"operationId":"paginatedCombinedSearch","summary":"Combined people + company search","tags":["Search"],"description":"Search for companies and profiles together. Returns results page by page using cursor-based pagination. Each entity type (companies, profiles) has its own cursor, so you can paginate them independently.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Credits are charged per page based on results: 1 credits per company found and 1 credits per profile found.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Your total charge will vary based on the number of companies and profiles returned in your results.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companyConfig":{"type":["object","null"],"properties":{"searchParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]},"upperBoundInclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The company search parameters. Prospects are found from companies matching these filters."},"pageSize":{"type":["number","null"],"maximum":100,"description":"The number of companies to return per page. Pass null if you only want profiles. NOTE: your companies search params will still get honored to find the profiles."},"exclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of company exclusion lists to filter out matching companies."},"companyCursor":{"type":["string","null"]}},"required":["searchParams"]},"profileConfig":{"type":["object","null"],"properties":{"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The profile search parameters. Returns profiles matching these filters who work at companies satisfying companyParams.","default":{}},"pageSize":{"type":"number","maximum":100,"description":"The number of profiles to return per page."},"exclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of prospect exclusion lists to filter out matching people."},"profileCursor":{"type":["string","null"]}},"required":["pageSize"]}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"Credits are charged per page based on results: 1 credits per company found and 1 credits per profile found.","variableCosts":[{"credits":1,"perUnit":"company found","operation":"getCompanyFromDb"},{"credits":1,"perUnit":"profile found","operation":"getPersonFromDb"}],"comment":"Your total charge will vary based on the number of companies and profiles returned in your results.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"companies":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}}},"profiles":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"nextCompaniesCursor":{"type":["string","null"],"description":"Pass this as companiesCursor in a subsequent request to get the next page of companies. Null when there are no more companies to return."},"nextProfilesCursor":{"type":["string","null"],"description":"Pass this as profilesCursor in a subsequent request to get the next page of profiles. Null when there are no more profiles to return."}},"required":["companies","profiles"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-logos/bulk":{"post":{"operationId":"bulkCompanyLogos","summary":"Bulk company logos","tags":["Company info"],"description":"Get logo URLs for a list of companies. Max 10,000 companies can be looked up at a time.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 0.33 credits per company logo lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companiesIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domains"]},"domains":{"type":"array","items":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"A domain, like 'example.com' or 'https://example.com'"},"minItems":1,"maxItems":10000}},"required":["type","domains"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedinUrls"]},"linkedinUrls":{"type":"array","items":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?<slug>[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"A LinkedIn company URL, like 'https://www.linkedin.com/company/google'"},"minItems":1,"maxItems":10000}},"required":["type","linkedinUrls"]},{"type":"object","properties":{"type":{"type":"string","enum":["liOrgIds"]},"liOrgIds":{"type":"array","items":{"type":"string"},"minItems":1,"maxItems":10000}},"required":["type","liOrgIds"]}],"description":"The list of companies to get the logo for. Include any of domain, linkedinUrl, or liOrgId. Max 10000 companies can be added at a time."}},"required":["apiKey","companiesIdentifier"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"0.33 credits per company logo lookup","variableCosts":[{"credits":0.3333333333333333,"perUnit":"company logo lookup","operation":"bulkCompanyLogoLookup"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domains"]},"data":{"type":"array","items":{"type":"object","properties":{"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$","description":"The domain of the company"},"logoUrl":{"type":"string","format":"uri","description":"The logo URL"}},"required":["domain","logoUrl"]},"maxItems":10000}},"required":["type","data"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedinUrls"]},"data":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"string","format":"uri","pattern":"^(https?:\\/\\/)?(\\w+\\.)?linkedin\\.\\w+(\\.\\w+)?\\/(company|company-beta|showcase|organization|school|companies)\\/(?<slug>[^\\/\\?#]+)\\/?(\\?.*)?(#.*)?$","description":"The linkedin URL of the company"},"logoUrl":{"type":"string","format":"uri","description":"The logo URL"}},"required":["linkedinUrl","logoUrl"]},"maxItems":10000}},"required":["type","data"]},{"type":"object","properties":{"type":{"type":"string","enum":["liOrgIds"]},"data":{"type":"array","items":{"type":"object","properties":{"liOrgId":{"type":"string","description":"The linkedin org ID of the company"},"logoUrl":{"type":"string","format":"uri","description":"The logo URL"}},"required":["liOrgId","logoUrl"]},"maxItems":10000}},"required":["type","data"]}],"description":"The list of logo URLs"}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/profile-pic/bulk":{"post":{"operationId":"bulkProfilePic","summary":"Bulk profile pics","tags":["Profile info"],"description":"Get profile pics for a list of profiles. Max 10,000 profiles can be looked up at a time.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 0.33 credits per profile pic lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrls":{"type":"array","items":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?<slug>[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"A LinkedIn URL, like 'https://www.linkedin.com/in/jake'"},"minItems":1,"maxItems":10000}},"required":["apiKey","linkedinUrls"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"0.33 credits per profile pic lookup","variableCosts":[{"credits":0.3333333333333333,"perUnit":"profile pic lookup","operation":"bulkProfilePicLookup"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?<slug>[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"The linkedin URL of the profile"},"profilePicFound":{"type":"boolean"},"profilePic":{"type":["string","null"],"description":"The profile pic of the profile"}},"required":["linkedinUrl","profilePicFound","profilePic"]}}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/combined-search/count":{"post":{"operationId":"combinedSearchCount","summary":"Combined search count","tags":["Search"],"description":"Get the total count of companies and people matching the provided search filters. People counts are scoped to those currently or previously working (based on the job status filter) at companies that satisfy the company search filters.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Flat charge for the company count (1 credit) and profile count (1 credit)&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Flat charge\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companyParams":{"type":"object","properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]},"upperBoundInclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"The company search parameters. Prospects are found from companies matching these filters."},"profileParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"The profile search parameters. Returns profiles matching these filters who work/used to work at companies satisfying companyParams.","default":{}},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of company exclusion lists to filter out matching companies."},"prospectExclusionListIDs":{"type":["array","null"],"items":{"type":"string"},"description":"The IDs of prospect exclusion lists to filter out matching people."}},"required":["apiKey","companyParams"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Flat charge for the company count (1 credit) and profile count (1 credit)","variableCosts":[{"credits":1,"perUnit":"request","operation":"getCompanyCountFromDb"},{"credits":1,"perUnit":"request","operation":"getPersonCountFromDb"}],"comment":"Flat charge","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"numCompanies":{"type":"number"},"numProfiles":{"type":"number"}},"required":["numCompanies","numProfiles"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/stealth-founders/search":{"post":{"operationId":"stealthFoundersSearch","summary":"Search stealth/ex-stealth founders","tags":["Stealth"],"description":"Find stealth founders — people currently at stealth-mode companies, or who recently left stealth (launched). Supports profile search filters to narrow results by location, keywords, job history, education, and more.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per profile found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"stealthConfig":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","description":"Find people currently in stealth. Optional enteredStealthAt narrows by entry date.","enum":["in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Date selection for when people entered stealth. Supports absolute or relative windows."}},"required":["mode"],"additionalProperties":false},{"type":"object","properties":{"mode":{"type":"string","description":"Find people who recently exited stealth. leftStealthAt defaults to the last year when omitted.","enum":["left-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Optional date selection for when people entered stealth."},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"default":{"strategy":"relative","window":{"method":"within","period":"year","lowerBound":0,"upperBound":1}},"description":"Date selection for when people exited stealth. Defaults to the last year when omitted."}},"required":["mode"],"additionalProperties":false}],"description":"Stealth mode configuration. Use in-stealth for current stealth founders, or left-stealth for exited stealth founders."},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Profile search filters to narrow results within the stealth population. All fields are optional — omit to search all stealth founders.","default":{}},"pageSize":{"type":"integer","exclusiveMinimum":0,"maximum":1000,"default":25,"description":"Number of profiles to return per page."},"cursor":{"type":["string","null"],"description":"Opaque cursor from the previous response. Omit for the first page."}},"required":["apiKey","stealthConfig"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per profile found","variableCosts":[{"credits":1,"perUnit":"profile found","operation":"getPersonFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"profile":{"type":"object","properties":{"user_id":{"type":["string","null"]},"primary_slug":{"type":"string"},"first_name":{"type":["string","null"]},"last_name":{"type":["string","null"]},"name":{"type":["string","null"]},"headline":{"type":["string","null"]},"profile_pic":{"type":["string","null"]},"locality":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"entity_urn":{"type":["string","null"]},"detailed_education":{"type":["array","null"],"items":{}},"detailed_work_experiences":{"type":["array","null"],"items":{}}},"required":["primary_slug"]},"stealthCareer":{"type":"object","properties":{"enteredStealthAt":{"type":["string","null"],"description":"When we first observed this person in stealth."},"lastConfirmedInStealthAt":{"type":["string","null"],"description":"Most recent date where we confirmed that they were still in stealth."},"leftStealthAt":{"type":["string","null"],"description":"When we first observed this person no longer in stealth. Null if still in stealth."},"daysInStealth":{"type":["integer","null"],"description":"Days spent in stealth. If still in stealth, days from entry to today. If left, days from entry to exit."},"transitions":{"type":"array","items":{"type":"object","properties":{"beforeSnapshotDate":{"type":"string","description":"Older snapshot timestamp in this transition."},"afterSnapshotDate":{"type":"string","description":"Newer snapshot timestamp in this transition."},"addedCurrentExperiences":{"type":"array","items":{"type":"object","properties":{"title":{"type":["string","null"]},"companyName":{"type":["string","null"]},"startDate":{"type":["string","null"]},"endDate":{"type":["string","null"]},"isCurrent":{"type":["boolean","null"]}}},"description":"Current experiences that appeared in the newer snapshot and were absent in the older snapshot."},"removedCurrentExperiences":{"type":"array","items":{"type":"object","properties":{"title":{"type":["string","null"]},"companyName":{"type":["string","null"]},"startDate":{"type":["string","null"]},"endDate":{"type":["string","null"]},"isCurrent":{"type":["boolean","null"]}}},"description":"Current experiences that existed in the older snapshot and disappeared in the newer snapshot."},"stealthStateChanged":{"type":"boolean","description":"Whether the person switched stealth state between the two snapshots."}},"required":["beforeSnapshotDate","afterSnapshotDate","addedCurrentExperiences","removedCurrentExperiences","stealthStateChanged"]},"description":"Signals job-listing changes across adjacent snapshots (older -> newer). These changes can provide useful clues while someone is in stealth, such as a role shifting from 'Founder @ Stealth Startup' to a more specific label like 'CTO @ Stealth Fintech Startup'."}},"required":["transitions"]}},"required":["profile","stealthCareer"]}},"pagination":{"type":"object","properties":{"nextCursor":{"type":["string","null"],"description":"Cursor for the next page. Null means there are no additional pages."},"hasMore":{"type":"boolean","description":"Whether additional pages are available for this query."}},"required":["hasMore"]}},"required":["data","pagination"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/stealth-founders/count":{"post":{"operationId":"stealthFoundersCount","summary":"Count stealth/ex-stealth founders","tags":["Stealth"],"description":"Count profiles matching stealth founder filters. Uses the same filters as the stealth founders search endpoint but returns only the total count.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"stealthConfig":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","description":"Find people currently in stealth. Optional enteredStealthAt narrows by entry date.","enum":["in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Date selection for when people entered stealth. Supports absolute or relative windows."}},"required":["mode"],"additionalProperties":false},{"type":"object","properties":{"mode":{"type":"string","description":"Find people who recently exited stealth. leftStealthAt defaults to the last year when omitted.","enum":["left-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"description":"Optional date selection for when people entered stealth."},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}],"default":{"strategy":"relative","window":{"method":"within","period":"year","lowerBound":0,"upperBound":1}},"description":"Date selection for when people exited stealth. Defaults to the last year when omitted."}},"required":["mode"],"additionalProperties":false}],"description":"Stealth mode configuration. Use in-stealth for current stealth founders, or left-stealth for exited stealth founders."},"searchParams":{"type":"object","properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["terms"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}}},"required":["clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}}}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups"]}]}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"additionalProperties":false,"description":"Profile search filters to narrow results within the stealth population. All fields are optional — omit to search all stealth founders.","default":{}}},"required":["apiKey","stealthConfig"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getPersonCountFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"count":{"type":"integer","minimum":0,"description":"Total number of profiles matching this stealth query."}},"required":["count"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/turbo/sync":{"post":{"operationId":"syncTurboContactEnrichment","summary":"Reveal contact details (turbo)","tags":["Contact details"],"description":"Fastest synchronous contact reveal — optimized for speed at a higher credit cost. Uses a premium enrichment stack for the lowest possible latency. For a cheaper option with slightly longer response times, use the standard /contact-details/single endpoint. For maximum coverage (async, slower), use the /contact-details/exhaustive/start endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request:<br />• 7 credits for all phone numbers AND all emails<br />• 3 credits for work email only<br />• 3 credits for personal email only<br />• 5 credits for phone only<br />• 5 credits for all emails&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Partial reveals only bill for delivered data.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 90 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 90 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrl":{"type":"string","minLength":1,"description":"The person's LinkedIn URL (e.g. 'https://www.linkedin.com/in/william-h-gates') or entity URN."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"The enrichment types to request. Credits are charged per selected type.","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}}},"required":["apiKey","linkedinUrl"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request:\n• 7 credits for all phone numbers AND all emails\n• 3 credits for work email only\n• 3 credits for personal email only\n• 5 credits for phone only\n• 5 credits for all emails","variableCosts":[{"credits":7,"perUnit":"full reveal (phone + emails)","operation":"premiumCombinedReveal"},{"credits":3,"perUnit":"work email reveal","operation":"premiumWorkEmailReveal"},{"credits":3,"perUnit":"personal email reveal","operation":"premiumPersonalEmailReveal"},{"credits":5,"perUnit":"phone reveal","operation":"premiumPhoneReveal"},{"credits":5,"perUnit":"all emails reveal","operation":"premiumAllEmailReveal"}],"comment":"Partial reveals only bill for delivered data.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":90,"displayText":"90 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]}},"status":{"type":"string","enum":["started","live-enriching","grabbing-contact-info","completed","failed"]},"error":{"type":"string"},"exhaustive":{"type":["boolean","null"]}},"required":["emails","phoneNumbers","status"]},"done":{"type":"boolean","description":"Whether the enrichment is completed or not."}},"required":["profile","done"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/single":{"post":{"operationId":"syncQuickContactReveal","summary":"Reveal contact details (standard)","tags":["Contact details"],"description":"Standard synchronous contact reveal — the best balance of speed, cost, and coverage. Only requires a LinkedIn URL; profile details are resolved automatically. For faster results at a higher credit cost, use the /contact-details/turbo/sync endpoint. For maximum coverage (async, slower, higher cost), use the /contact-details/exhaustive/start endpoint.\n\n<span>⚡ <strong>Rate limit:</strong> 200 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request:<br />• 5 credits for all phone numbers AND all emails<br />• 2 credits for work email only<br />• 2 credits for personal email only<br />• 3 credits for phone only<br />• 3 credits for all emails&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Partial reveals only bill for delivered data.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 2 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 2 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrl":{"type":"string","minLength":1,"description":"The person's LinkedIn URL (e.g. 'https://www.linkedin.com/in/william-h-gates') or a bare slug (e.g. 'william-h-gates')."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"The enrichment types to request. Credits are charged per selected type.","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}},"validateEmails":{"type":"boolean","default":true,"description":"Whether to bounce-validate emails before returning them. Disabling this speeds up responses. No additional cost either way."}},"required":["apiKey","linkedinUrl"]}}}},"x-rate-limit":{"max":200,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request:\n• 5 credits for all phone numbers AND all emails\n• 2 credits for work email only\n• 2 credits for personal email only\n• 3 credits for phone only\n• 3 credits for all emails","variableCosts":[{"credits":5,"perUnit":"full reveal (phone + emails)","operation":"combinedReveal"},{"credits":2,"perUnit":"work email reveal","operation":"workEmailReveal"},{"credits":2,"perUnit":"personal email reveal","operation":"personalEmailReveal"},{"credits":3,"perUnit":"phone reveal","operation":"phoneReveal"},{"credits":3,"perUnit":"all emails reveal","operation":"allEmailReveal"}],"comment":"Partial reveals only bill for delivered data.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":120,"displayText":"2 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]}},"phoneNumbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]}},"status":{"type":"string","enum":["started","live-enriching","grabbing-contact-info","completed","failed"]},"error":{"type":"string"},"exhaustive":{"type":["boolean","null"]}},"required":["emails","phoneNumbers","status"]},"done":{"type":"boolean","description":"Whether the enrichment is completed or not."}},"required":["profile","done"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/lite":{"post":{"operationId":"liteContactReveal","summary":"Reveal contact details (lite)","tags":["Contact details"],"description":"Low-cost contact reveal path that searches differently. Compared with other contact reveal endpoints, this endpoint is priced lower but has lower yield (it may miss contacts that other endpoints can find).\n\n<span>⚡ <strong>Rate limit:</strong> 500 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per lite email reveal&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 2 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 2 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"input":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["linkedin"]},"linkedinIdentifier":{"type":"string","minLength":1,"description":"LinkedIn profile identifier — a full URL, bare slug, or URN (e.g. 'williamhgates', 'https://www.linkedin.com/in/williamhgates')."},"fullName":{"type":["string","null"],"minLength":1,"description":"Full name of the person. Optional — improves match accuracy."}},"required":["mode","linkedinIdentifier"]},{"type":"object","properties":{"mode":{"type":"string","enum":["name-domain"]},"fullName":{"type":"string","minLength":1,"description":"Full name of the person."},"companyDomain":{"type":"string","minLength":1,"description":"Company domain (e.g. 'gatesfoundation.org')."}},"required":["mode","fullName","companyDomain"]}],"description":"Person lookup parameters. Use mode 'linkedin' or 'name-domain'."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":false}},"description":"Which email types to look for.","default":{"getWorkEmails":true,"getPersonalEmails":false}}},"required":["apiKey","input"]}}}},"x-rate-limit":{"max":500,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per lite email reveal","variableCosts":[{"credits":1,"perUnit":"lite email reveal","operation":"liteEmailReveal"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":120,"displayText":"2 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profile":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"emailAddress":{"type":["string","null"],"minLength":1,"description":"Email address for the person."},"type":{"type":["string","null"],"enum":["work","personal",null],"description":"Classification of the email address."},"validationStatus":{"type":["string","null"],"enum":["valid","risky","unknown","invalid",null],"description":"Email verification result."},"deliverabilityScore":{"type":["number","null"],"minimum":0,"maximum":100,"description":"Confidence score ranking deliverability for this email. Higher values indicate higher likelihood of delivery."},"isCatchAll":{"type":["boolean","null"],"description":"Whether the domain accepts email to any address (catch-all). Catch-all domains make individual address verification unreliable — the address may appear valid but not actually be monitored."}}},"default":[],"description":"All emails found for this profile, ordered by priority."}},"required":["emails"]}},"required":["profile"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/depth-chart/start":{"post":{"operationId":"startDepthChart","summary":"Start depth chart generation","tags":["Company info"],"description":"Generates an organizational depth chart for a company — a close analog to the company's internal org chart. Classifies employees by function (Engineering, Sales, Marketing, etc.) and seniority level (Junior through Executive). This is asynchronous: call this endpoint to start generation, then poll /depth-chart/poll with the returned report ID. Processing typically takes 1-5 minutes depending on company size. Depth chart generation processes up to 10,000 employee profiles per report; larger companies are truncated to the most relevant profiles.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/anthropic')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'anthropic')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '1441')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'anthropic.com')."}},"required":["identifier","value"]}],"description":"Company identifier. Set identifier to 'linkedinUrl', 'linkedinSlug', 'linkedinOrgId', or 'domain' and provide the corresponding value."},"functions":{"type":["array","null"],"items":{"type":"string","minLength":1},"minItems":1,"maxItems":30,"description":"Optional list of function/department labels to classify employees into (e.g. ['Engineering', 'Sales', 'Legal Practice']). When omitted, functions are auto-detected based on the company's employee titles. An 'Other' category is automatically appended if not already included, to catch employees that don't fit the provided labels."}},"required":["apiKey","company"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"reportId":{"type":"string","description":"Unique report ID. Poll /depth-chart/poll with this ID to check status and retrieve results."}},"required":["reportId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/exhaustive/start":{"post":{"operationId":"triggerExhaustiveContactEnrichment","summary":"Start exhaustive contact details reveal","tags":["Contact details"],"description":"Maximum-coverage contact reveal — runs all waterfall steps in parallel to get the most comprehensive results. This is asynchronous: call this endpoint to start the task, then poll /contact-details/exhaustive/poll with the returned task ID. Slower and more expensive than the synchronous endpoints, but returns more emails and phone numbers on average. For faster synchronous results, use /contact-details/single (standard) or /contact-details/turbo/sync (fastest).\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request (exhaustive mode):<br />• 12 credits for all phone numbers AND all emails<br />• 5 credits for work email only<br />• 5 credits for personal email only<br />• 4 credits for phone only<br />• 9 credits for all emails&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Credits are charged after the reveal completes so partial reveals only bill for delivered data.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"linkedinUrl":{"type":"string","minLength":1,"description":"Person's LinkedIn URL or slug, like 'https://www.linkedin.com/in/william-h-gates' or 'william-h-gates'"},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"Enrichment types to be requested. Include the ones you want to look for. For example, { getWorkEmails: true, getPersonalEmails: true, getPhoneNumbers: true }","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}}},"required":["apiKey","linkedinUrl"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request (exhaustive mode):\n• 12 credits for all phone numbers AND all emails\n• 5 credits for work email only\n• 5 credits for personal email only\n• 4 credits for phone only\n• 9 credits for all emails","variableCosts":[{"credits":12,"perUnit":"full reveal (phone + emails) (exhaustive)","operation":"exhaustiveCombinedReveal"},{"credits":5,"perUnit":"work email reveal (exhaustive)","operation":"exhaustiveWorkEmailReveal"},{"credits":5,"perUnit":"personal email reveal (exhaustive)","operation":"exhaustivePersonalEmailReveal"},{"credits":4,"perUnit":"phone reveal (exhaustive)","operation":"exhaustivePhoneReveal"},{"credits":9,"perUnit":"all emails reveal (exhaustive)","operation":"exhaustiveAllEmailReveal"}],"comment":"Credits are charged after the reveal completes so partial reveals only bill for delivered data.","chargingMethod":"charging-later"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"taskId":{"type":"string","description":"Exhaustive contact enrichment will proceed in the background. Call the polling endpoint with this ID to check if it's finished and get the result."}},"required":["taskId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/batch/start":{"post":{"operationId":"startBatchContactDetails","summary":"Start batch contact details","tags":["Contact details"],"description":"Starts fetching contact details for multiple people (up to 2000) in batch. This is an asynchronous task; use the polling endpoint to check progress and get results.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay only for the data you request:<br />• 5 credits for all phone numbers AND all emails<br />• 2 credits for work email only<br />• 2 credits for personal email only<br />• 3 credits for phone only&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Credits are charged upfront for all unique people queued (after deduping). Undelivered data is refunded per operation.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"personDetails":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"object","properties":{"value":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?<slug>[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"A LinkedIn URL, like 'https://www.linkedin.com/in/jake'"}},"required":["value"]}},"required":["linkedinUrl"]},"minItems":1,"maxItems":2000},"enrichmentTypes":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"The types of contact information to request for each person. Credits are charged per selected type.","default":{"getWorkEmails":true,"getPersonalEmails":true,"getPhoneNumbers":true}}},"required":["apiKey","personDetails"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"Pay only for the data you request:\n• 5 credits for all phone numbers AND all emails\n• 2 credits for work email only\n• 2 credits for personal email only\n• 3 credits for phone only","variableCosts":[{"credits":5,"perUnit":"full reveal (phone + emails)","operation":"combinedReveal"},{"credits":2,"perUnit":"work email reveal","operation":"workEmailReveal"},{"credits":2,"perUnit":"personal email reveal","operation":"personalEmailReveal"},{"credits":3,"perUnit":"phone reveal","operation":"phoneReveal"}],"comment":"Credits are charged upfront for all unique people queued (after deduping). Undelivered data is refunded per operation.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"taskId":{"type":"string","minLength":1,"description":"The task ID. Use this to poll for results."},"numPeopleEnqueued":{"type":"integer","exclusiveMinimum":0,"description":"The total number of people queued for enrichment."},"numDuplicatesSkipped":{"type":["integer","null"],"description":"The number of duplicate people found in the input list. Duplicates are skipped and not charged."}},"required":["taskId","numPeopleEnqueued"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/contact-details/batch/cancel":{"post":{"operationId":"cancelBatchContactDetails","summary":"Cancel batch contact details","tags":["Contact details"],"description":"Cancels a batch contact details job that is in progress. Only unclaimed profiles will be cancelled. Profiles already processed will be charged for. Credits are refunded for cancelled profiles.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"taskId":{"type":"string","minLength":1,"description":"The task ID returned from the start endpoint."}},"required":["apiKey","taskId"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"cancelledCount":{"type":"integer","minimum":0,"description":"The number of profiles cancelled."},"creditsRefunded":{"type":"number","minimum":0,"description":"The number of credits refunded for cancelled profiles."},"message":{"type":"string","description":"A human-readable summary of the cancellation result."}},"required":["cancelledCount","creditsRefunded","message"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile/single":{"post":{"operationId":"profileLiveEnrich","summary":"Live fetch LinkedIn profile","tags":["Live fetch"],"description":"Returns an enriched profile with details for a given LinkedIn profile identifier\n\n<span>⚡ <strong>Rate limit:</strong> 600 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per profile live fetch&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 30 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 30 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"The profile's LinkedIn slug (e.g. 'williamhgates'), full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/'), Sales Navigator URN, or LinkedIn user ID (e.g. '443105112')."},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":600,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per profile live fetch","variableCosts":[{"credits":2,"perUnit":"profile live fetch","operation":"liveEnrichPerson"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":30,"displayText":"30 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"oneOf":[{"type":"object","properties":{"found":{"type":"boolean","enum":[true]},"profile":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"isCached404":{"type":["boolean","null"],"description":"True when the profile is not found on LinkedIn but we have cached data in our database."}},"required":["found","profile"],"title":"Profile Found and Enriched","description":"The profile was found and enriched"},{"type":"object","properties":{"found":{"type":"boolean","enum":[false]},"message":{"type":"string"}},"required":["found","message"],"title":"Profile Not Found","description":"The profile was not found on LinkedIn. Check that your URL is still active!"}]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/company/single":{"post":{"operationId":"companyLiveEnrich","summary":"Live fetch LinkedIn company","tags":["Live fetch"],"description":"Returns an enriched company with details for a given LinkedIn company identifier\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per company live fetch&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"type":{"type":"string","enum":["slug","orgId","liUrl"]},"value":{"type":"string","minLength":1,"description":"The company's LinkedIn slug (e.g. 'microsoft'), LinkedIn URL (e.g. 'https://www.linkedin.com/company/microsoft'), LinkedIn organization ID (e.g. '1441'), or Fiber company ID (e.g. 'comp_1441')."},"getHistoricalHeadcount":{"type":"boolean","default":false,"description":"Whether to compute the company's historical employee count and recent growth trends. No additional cost, but may take longer."}},"required":["apiKey","type","value"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per company live fetch","variableCosts":[{"credits":2,"perUnit":"company live fetch","operation":"liveEnrichCompany"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"company":{"type":"object","properties":{"headline":{"type":["string","null"]},"description":{"type":["string","null"]},"employee_count":{"type":["number","null"]},"follower_count":{"type":["number","null"]},"founded_year":{"type":["number","null"]},"industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"linkedin_url":{"type":["string","null"]},"locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"name":{"type":["string","null"]},"org_id":{"type":["string","null"]},"slug":{"type":"string"},"specialties":{"type":["array","null"],"items":{"type":"string"}},"ticker":{"type":["string","null"]},"type":{"type":["string","null"]},"domain":{"type":["string","null"]},"website":{"type":["string","null"]},"est_employee_count_lower_bound":{"type":["number","null"]},"est_employee_count_upper_bound":{"type":["number","null"]},"standardized_industries":{"type":["array","null"],"items":{"type":"string"}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"logo_url":{"type":["string","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"revenue_usd_lower_bound":{"type":["string","null"]},"revenue_usd_upper_bound":{"type":["string","null"]}},"required":["slug"],"description":"The enriched company data. A 404 status is returned if the company was not found."},"isCached404":{"type":["boolean","null"],"description":"True when the company is not found on LinkedIn but we have cached data in our database."}},"required":["company"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/live-fetch/webpage/screenshot":{"post":{"operationId":"webpageScreenshot","summary":"Capture webpage screenshot","tags":["Web Research"],"description":"Captures a screenshot of a public webpage and returns a hosted image URL. Supports both viewport-only and full-page captures. The returned URL is permanent and does not expire.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per screenshot&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"url":{"type":"string","minLength":1,"description":"The URL of the webpage to capture (e.g. 'https://stripe.com/pricing'). Bare domains like 'stripe.com' are also accepted and will be treated as HTTPS."},"fullPage":{"type":"boolean","default":false,"description":"If true, captures the entire scrollable page. Defaults to false (viewport only)."},"format":{"type":"string","enum":["mobile","desktop"],"default":"desktop","description":"Device format for the capture. 'mobile' uses a phone-sized viewport, 'desktop' uses a standard widescreen viewport. Defaults to 'desktop'."},"country":{"type":["string","null"],"pattern":"^[A-Z]{3}$","minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code for geo-located capture (e.g. 'USA', 'GBR', 'DEU'). If omitted, defaults to a US-based capture."}},"required":["apiKey","url"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per screenshot","variableCosts":[{"credits":2,"perUnit":"screenshot","operation":"webpageScreenshot"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"screenshotUrl":{"type":"string","format":"uri","description":"Hosted URL of the captured screenshot image in PNG format."},"pageUrl":{"type":"string","format":"uri","description":"The final URL of the page that was screenshotted, after following any redirects. May differ from the input URL if the page redirects."},"pageTitle":{"type":["string","null"],"description":"The HTML title of the screenshotted page, if available."},"imageMediaType":{"type":"string","enum":["image/png"],"description":"MIME type of the screenshot image."},"capturedAt":{"type":"string","description":"ISO 8601 timestamp of when the screenshot was captured."}},"required":["screenshotUrl","pageUrl","imageMediaType","capturedAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/batch/start":{"post":{"operationId":"startBatchLiveEnrich","summary":"Start batch live enrichment","tags":["Live fetch"],"description":"Starts a batch live enrichment job for multiple LinkedIn profiles or companies (up to 10,000). This is an asynchronous task; use the polling endpoint to check progress and get results.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per live fetch&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"type":{"type":"string","enum":["PROFILE","COMPANY"],"description":"Whether to enrich people or companies"},"identifiers":{"type":"array","items":{"type":"string","minLength":1},"minItems":1,"maxItems":10000,"description":"List of LinkedIn identifiers. For profiles: LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates'), profile slug (e.g. 'williamhgates'), or Sales Navigator URN (e.g. 'ACwAAAjNR6wBsr_od4UG9Y-HRxg21mwhv5xO0FE') or numeric user ID (e.g. '4532776'). For companies: LinkedIn URL (e.g. 'https://www.linkedin.com/company/microsoft'), company slug (e.g. 'microsoft'), or numeric org ID (e.g. '1035')."}},"required":["apiKey","type","identifiers"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per live fetch","variableCosts":[{"credits":2,"perUnit":"live fetch","operation":"liveEnrichPerson"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"taskId":{"type":"string","description":"Use this ID to poll for progress via the poll endpoint."},"type":{"type":"string","enum":["PROFILE","COMPANY"]},"numIdentifiersEnqueued":{"type":"integer","minimum":0,"description":"Number of unique identifiers queued for enrichment"},"numDuplicatesSkipped":{"type":"integer","minimum":0,"description":"Number of duplicate identifiers skipped."},"numMalformed":{"type":"integer","minimum":0,"description":"Number of identifiers that could not be parsed. numIdentifiersEnqueued + numDuplicatesSkipped + numMalformed = length of your input."}},"required":["taskId","type","numIdentifiersEnqueued","numDuplicatesSkipped","numMalformed"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-posts":{"post":{"operationId":"profilePostsLiveFetch","summary":"Fetch LinkedIn profile posts","tags":["LinkedIn activity"],"description":"Fetches recent posts from a LinkedIn profile. Returns a paginated feed of posts with optional cursor for pagination. Each page returns up to 50 posts.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Identifier can be a profile's LinkedIn slug (e.g. 'williamhgates' from <linkedin.com/in/williamhgates>), a Sales Navigator URN (e.g. 'ACwAAA.....'), or a full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfilePosts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]},"resharedPost":{"type":["object","null"],"properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]}},"required":["postId"]}},"required":["postId"]}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/company-posts":{"post":{"operationId":"companyPostsLiveFetch","summary":"Fetch LinkedIn company posts","tags":["LinkedIn activity"],"description":"Fetches recent posts from a LinkedIn company page. Returns a paginated feed of company posts. Each page contains up to 50 posts.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Company identifier can be either a LinkedIn company slug/url (e.g., 'microsoft' or 'https://www.linkedin.com/company/microsoft') or a numeric linkedin organization ID (e.g., '1035')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiCompanyPosts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]},"resharedPost":{"type":["object","null"],"properties":{"postId":{"type":"string"},"author":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"postedAt":{"type":["object","null"],"properties":{"noLaterThan":{"type":["string","null"]},"noEarlierThan":{"type":["string","null"]}}},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numReactions":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"postUrl":{"type":["string","null"]},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"caption":{"type":["string","null"]},"subText":{"type":["string","null"]}},"required":["postId"]}},"required":["postId"]}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/post-comments":{"post":{"operationId":"postCommentsLiveFetch","summary":"Fetch LinkedIn post comments","tags":["LinkedIn activity"],"description":"Fetches paginated comments for a LinkedIn post. Each page contains up to 10 comments.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"contentId":{"type":"string","minLength":1,"description":"You can get LinkedIn posts from the Profile or Company Posts endpoints. (e.g., 'urn:li:activity:7123456789012345678' or 'urn:li:ugcPost:7391650829398675456')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","contentId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiPostComments"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"commentary":{"type":["string","null"]},"commenter":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"numReactions":{"type":["number","null"]},"numComments":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}},"createdAt":{"type":["string","null"]},"comments":{"type":["array","null"],"items":{"type":"object","properties":{"commentary":{"type":["string","null"]},"commenter":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"name":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"linkedinSlug":{"type":["string","null"]}}},"numReactions":{"type":["number","null"]},"numComments":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}},"createdAt":{"type":["string","null"]}}}}}}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/post-reactions":{"post":{"operationId":"postReactionsLiveFetch","summary":"Fetch LinkedIn post reactions","tags":["LinkedIn activity"],"description":"Fetches paginated reactions of a specific type for a LinkedIn post. Each page contains up to 10 reactions.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"contentId":{"type":"string","minLength":1,"description":"You can get LinkedIn posts from the Profile or Company Posts endpoints. (e.g., 'urn:li:activity:7123456789012345678' or 'urn:li:ugcPost:7391650829398675456')"},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"Type of reaction to fetch. If null, all reactions will be fetched."},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","contentId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiPostReactions"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."},"reactor":{"type":["object","null"],"properties":{"userId":{"type":["number","null"]},"entityUrn":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"name":{"type":["string","null"]},"headline":{"type":["string","null"]}}}}}},"cursor":{"type":["string","null"]}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-comments":{"post":{"operationId":"profileCommentsLiveFetch","summary":"Fetch LinkedIn profile comments","tags":["LinkedIn activity"],"description":"Fetches comments made by a LinkedIn profile. Returns a paginated feed of comments with optional cursor for pagination. Each page returns up to 10 comments.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Identifier can be a profile's LinkedIn slug (e.g. 'williamhgates' from <linkedin.com/in/williamhgates>), a Sales Navigator URN (e.g. 'ACwAAA.....'), or a full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of comments"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfileComments"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"comments":{"type":["array","null"],"items":{"type":"object","properties":{"commentId":{"type":["string","null"]},"content":{"type":["string","null"]},"commentedAgo":{"type":["string","null"]},"commenter":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"entityUrn":{"type":["string","null"]},"name":{"type":["string","null"]}}},"post":{"type":["object","null"],"properties":{"postUrn":{"type":["string","null"]},"postUrl":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}}}}}}},"cursor":{"type":["string","null"]}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-reactions":{"post":{"operationId":"profileReactionsLiveFetch","summary":"Fetch LinkedIn profile reactions","tags":["LinkedIn activity"],"description":"Fetches reactions made by a LinkedIn profile. Returns a paginated feed of reactions with optional cursor for pagination. Each page returns up to 10 reactions.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","description":"Identifier can be a profile's LinkedIn slug (e.g. 'williamhgates' from <linkedin.com/in/williamhgates>), a Sales Navigator URN (e.g. 'ACwAAA.....'), or a full LinkedIn URL (e.g. 'https://www.linkedin.com/in/williamhgates/')"},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of reactions"}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfileReactions"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"reactions":{"type":["array","null"],"items":{"type":"object","properties":{"reactionId":{"type":["string","null"]},"type":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."},"target":{"type":["string","null"]},"reactedAgo":{"type":["string","null"]},"reactor":{"type":["object","null"],"properties":{"linkedinUrl":{"type":["string","null"]},"profilePicture":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}},"post":{"type":["object","null"],"properties":{"postUrn":{"type":["string","null"]},"postUrl":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}},"content":{"type":["string","null"]}}},"comment":{"type":["object","null"],"properties":{"content":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"entityUrn":{"type":["string","null"]}}}}}}}},"cursor":{"type":["string","null"]}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-latest-activities":{"post":{"operationId":"profileLatestActivitiesLiveFetch","summary":"Fetch latest LinkedIn activities for a profile","tags":["LinkedIn activity"],"description":"Fetches up to 30 of a person's most recent LinkedIn activities (posts, comments, reactions, shares, and reposts) in newest-first order. If you only need to know when a person was last active, use the lighter profile-last-activity-date endpoint instead.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","minLength":1,"description":"LinkedIn profile URL is preferred (for example, 'https://www.linkedin.com/in/williamhgates/'). A LinkedIn slug ('williamhgates') or Sales Navigator URN is also accepted."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per request","variableCosts":[{"credits":3,"perUnit":"request","operation":"getLiProfileLatestActivities"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"lastActivityAt":{"type":["string","null"],"description":"Timestamp of the most recent public LinkedIn activity (post, comment, reaction, share, or repost) in ISO 8601 format, or null when no activity is available. This is not a 'last login' or 'last seen online' value."},"activities":{"type":"array","items":{"type":"object","properties":{"activityType":{"type":"string","enum":["post","comment","reaction","share","repost","other"],"description":"Type of LinkedIn activity (post, comment, reaction, share, repost, or other)."},"occurredAt":{"type":"string","description":"Activity timestamp in ISO 8601 format."},"url":{"type":["string","null"],"description":"Best available LinkedIn URL for this activity."},"activityUrn":{"type":["string","null"],"description":"LinkedIn activity URN — a canonical identifier for this activity (for example, 'urn:li:activity:7193874239485124608'). Pass this value to the post-comments or post-reactions endpoints to fetch comments or reactions on the underlying post."},"content":{"type":["string","null"],"description":"Primary text content for this activity when available."}},"required":["activityType","occurredAt"]},"description":"Up to 30 recent LinkedIn activities, ordered from newest to oldest."}},"required":["activities"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/profile-last-activity-date":{"post":{"operationId":"profileLastActivityDateLiveFetch","summary":"Fetch last activity date for a LinkedIn profile","tags":["LinkedIn activity"],"description":"Fetches the last date where the person made a publicly visible action on LinkedIn, such as a post, comment, reaction, or repost. This does not include logging in or other private actions.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","minLength":1,"description":"LinkedIn profile URL is preferred (for example, 'https://www.linkedin.com/in/williamhgates/'). A LinkedIn slug ('williamhgates') or Sales Navigator URN is also accepted."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"getLiProfileLastActiveDate"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"lastActivityAt":{"type":["string","null"],"description":"Timestamp of the most recent public LinkedIn activity (post, comment, reaction, share, or repost) in ISO 8601 format, or null when no activity is available. This is not a 'last login' or 'last seen online' value."}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/linkedin-live-fetch/posts/search":{"post":{"operationId":"postSearchByKeywords","summary":"Search LinkedIn posts by keywords","tags":["LinkedIn activity"],"description":"Search LinkedIn posts using keyword-based queries. Returns a paginated list of posts matching the search criteria, up to 50 per page.\n\n**Keyword Search Syntax:**\n- **Exact phrase:** Wrap keywords in quotes for exact phrase matching. \"head of sales\" matches the exact phrase, not the individual words.\n- **AND:** Use **AND** between keywords to require both terms. sales **AND** engineering matches posts containing both words.\n- **OR:** Use **OR** between keywords to match posts containing any of the terms. sales **OR** marketing matches posts with either word.\n- **NOT:** Use **NOT** before a keyword to exclude posts containing that term. sales **NOT** recruiter matches posts with \"sales\" but without \"recruiter\".\n- **Parentheses:** Group terms to control operator precedence. (sales **OR** marketing) **AND** \"series A\" finds posts about either sales or marketing that also mention \"series A\".\n\n**Order of precedence:**\n1. **Quotes (\" \"):** Exact phrase match. Phrase matching occurs before any Boolean logic is applied.\n2. **Parentheses (()):** Used to explicitly group Boolean logic. Grouped expressions are evaluated before ungrouped logic.\n3. **NOT:** Applied after any parentheses or quoted phrases are resolved.\n4. **AND:** Evaluated after **NOT** but before **OR**.\n5. **OR:** Lowest precedence among Boolean operators.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"keywords":{"type":"string","minLength":1,"maxLength":10000,"description":"Keywords to search for in LinkedIn posts (comma-separated)"},"recency":{"type":["string","null"],"enum":["Day","Week","Month","Quarter","HalfYear","Year",null],"description":"Filter by post age. Options: Day, Week, Month, Quarter, HalfYear, Year. Defaults to all time if omitted."},"cursor":{"type":["string","null"],"description":"Pagination cursor for fetching additional pages of posts"}},"required":["apiKey","keywords"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"getLiProfilePosts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"posts":{"type":"array","items":{"type":"object","properties":{"postId":{"type":"string"},"content":{"type":["string","null"]},"postUrl":{"type":["string","null"]},"author":{"type":["object","null"],"properties":{"type":{"type":["string","null"]},"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"headline":{"type":["string","null"]},"website":{"type":["string","null"]},"profilePicture":{"type":["string","null"]}}},"publishedAt":{"type":["string","null"]},"imageUrls":{"type":["array","null"],"items":{"type":"string"}},"video":{"type":["object","null"],"properties":{"videoUrl":{"type":["string","null"]},"thumbnailUrl":{"type":["string","null"]}}},"article":{"type":["object","null"],"properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"url":{"type":["string","null"]},"description":{"type":["string","null"]},"imageUrl":{"type":["string","null"]}}},"originalPostId":{"type":["string","null"]},"originalPost":{"type":["object","null"],"additionalProperties":{}},"resharedBy":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]}}},"newsletterUrl":{"type":["string","null"]},"newsletterTitle":{"type":["string","null"]},"engagement":{"type":["object","null"],"properties":{"numComments":{"type":["number","null"]},"numShares":{"type":["number","null"]},"numLikes":{"type":["number","null"]},"reactionsByType":{"type":["array","null"],"items":{"type":"object","properties":{"numReactions":{"type":["number","null"]},"reactionType":{"type":["string","null"],"enum":["LIKE","LOVE","INSIGHTFUL","CELEBRATE","SUPPORT","FUNNY",null],"description":"One of LinkedIn's reaction types. These match the tooltips on each of LinkedIn's six reaction buttons; for instance, 'Like' is the blue thumbs-up."}}}}}}},"required":["postId"]}},"cursor":{"type":["string","null"]}},"required":["posts"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/standardize/profile/single":{"post":{"operationId":"standardizeProfile","summary":"Standardize LinkedIn profile entity URN","tags":["Repair Data"],"description":"Resolves a LinkedIn entity URN to a proper LinkedIn profile URL. Supports a variety of URN formats from different LinkedIn sources (including ACoAA... and ACwAA... prefixes). Accepts either a raw entity URN or a full LinkedIn URL containing an entity URN in the slug position (e.g., 'https://www.linkedin.com/in/ACoAADVMtbkB...').\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per profile standardization&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","minLength":1,"description":"A LinkedIn entity URN (e.g., 'ACoAADVMtbkBbZIxJxJjGEQV7SrQCMml8ni7qyg') or a full LinkedIn profile URL containing an entity URN (e.g., 'https://www.linkedin.com/in/ACoAADVMtbkBbZIxJxJjGEQV7SrQCMml8ni7qyg'). Entity URNs typically start with 'ACo' or 'ACw'."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per profile standardization","variableCosts":[{"credits":1,"perUnit":"profile standardization","operation":"standardizePersonSlug"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"linkedinUrl":{"type":"string","description":"The resolved LinkedIn profile URL (e.g., 'https://www.linkedin.com/in/williamhgates')"},"fullName":{"type":["string","null"],"description":"The person's full name, if available"}},"required":["linkedinUrl"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/standardize/company/single":{"post":{"operationId":"standardizeCompany","summary":"Standardize LinkedIn company identifier","tags":["Repair Data"],"description":"Resolves a company LinkedIn identifier (slug, organization ID, or URL) to a standardized LinkedIn company URL with metadata. Useful for normalizing company identifiers from different sources.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per company standardization&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"identifier":{"type":"string","minLength":1,"description":"The company's LinkedIn slug (e.g., 'microsoft'), numeric LinkedIn organization ID (e.g., '1035'), or full LinkedIn URL (e.g., 'https://www.linkedin.com/company/microsoft')."}},"required":["apiKey","identifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per company standardization","variableCosts":[{"credits":1,"perUnit":"company standardization","operation":"standardizeCompanySlug"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"linkedinUrl":{"type":"string","description":"The standardized LinkedIn company URL (e.g., 'https://www.linkedin.com/company/microsoft')"},"name":{"type":["string","null"],"description":"The company name, if available"},"websiteUrl":{"type":["string","null"],"description":"The company's website URL, if available"}},"required":["linkedinUrl"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/email-to-person/single":{"post":{"operationId":"reverseEmailLookup","summary":"Find person by email (single)","tags":["Email lookup"],"description":"Given an email address, find the person's LinkedIn profile and personal details.\nIf the person's name, company, or other identifiers are also available, use the Kitchen Sink endpoint instead — it accepts all available signals and produces better matches.\nTo avoid 429 errors, space requests evenly (such as 1/60th the rate limit per second) rather than bursting them all at once.\n\n<span>⚡ <strong>Rate limit:</strong> 3500 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per email lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"email":{"type":"string","format":"email","minLength":1,"description":"The email address of a person whose LinkedIn profile you want to find."}},"required":["apiKey","email"]}}}},"x-rate-limit":{"max":3500,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per email lookup","variableCosts":[{"credits":2,"perUnit":"email lookup","operation":"emailToLinkedinUrl"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"description":"LinkedIn profiles matching this email, ordered by best match. Usually contains one result.","default":[]},"rejection":{"type":["object","null"],"properties":{"reason":{"type":"string","enum":["disposable_or_anonymous_email","invalid_tld","autogenerated_icloud_email","digits_only_username","role_based_mailbox","junk_username","spam_domain","bot_farm_email","mailing_list"],"description":"Machine-readable rejection reason"},"message":{"type":"string","description":"Human-readable explanation"}},"required":["reason","message"],"description":"Present when the email is unresolvable (e.g. disposable, anonymous relay, or role-based address). The request succeeded but there is no person to find."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter-handle-to-linkedin/single":{"post":{"operationId":"twitterHandleToLinkedinUrl","summary":"Find LinkedIn URL from X (Twitter) handle","tags":["Social media"],"description":"Given an X (Twitter) handle, find the person's LinkedIn profile URL. Accepts bare handles (with or without '@') and full X / Twitter profile URLs.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per X→LinkedIn lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Twitter/X handle to look up. Accepts a bare handle with or without a leading '@' (e.g. 'elonmusk', '@elonmusk'), or a full X/Twitter profile URL (e.g. 'https://x.com/elonmusk', 'twitter.com/@elonmusk')."},"context":{"type":["string","null"],"minLength":1,"maxLength":1000,"description":"Optional hint about the person, used to disambiguate common-name handles (e.g. \"VC at a16z\" or \"YC W23 founder\"). Improves accuracy on ambiguous handles. Max 1000 characters."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per X→LinkedIn lookup","variableCosts":[{"credits":3,"perUnit":"X→LinkedIn lookup","operation":"socialMediaFinderAgent"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"linkedInUrl":{"type":["string","null"],"minLength":1,"description":"LinkedIn profile URL if a match was found, else null."},"confidenceOutOf10":{"type":"integer","minimum":0,"maximum":10,"description":"Match confidence on a 0-10 scale. 0 means no confident match was found; higher values indicate stronger evidence."},"rationale":{"type":["string","null"],"minLength":1,"description":"Short explanation of why this LinkedIn profile was matched. Null for high-confidence direct matches and when no match was found."},"xProfile":{"type":["object","null"],"properties":{"handle":{"type":"string","minLength":1,"description":"The X handle, echoed from the fetched profile."},"displayName":{"type":["string","null"],"description":"Display name shown on the X profile. Null if the profile has no display name set."},"bio":{"type":["string","null"],"description":"Profile bio text. Null if the profile has no bio."},"location":{"type":["string","null"],"description":"Location as displayed on the X profile (free-form, not normalized). Null if the user did not set a location."},"externalUrl":{"type":["string","null"],"description":"External URL linked from the X profile (often a personal site or company link). Null if the profile has no external URL."}},"required":["handle"],"description":"Public snapshot of the X profile that was used for matching (null if the X profile could not be fetched)."}},"required":["confidenceOutOf10"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/google-maps-search/start":{"post":{"operationId":"google-maps-search","summary":"Start a search on Google Maps","tags":["Google maps"],"description":"Start a search for local businesses or other places of interest on Google Maps\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per business found&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":["string","null"],"description":"An optional name for the project for reference purposes."},"query":{"type":"string","minLength":1,"description":"The search query to run on Google Maps. Do not include a location info here. Examples: 'dominos pizza', 'real estate agent'."},"maxResults":{"type":"integer","exclusiveMinimum":0,"maximum":10000,"default":100,"description":"The maximum number of Google Maps results to return."},"strategy":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","description":"Does a broad search across all cities in the United States. Not as exhaustive as, for example, a city-specific search.","enum":["whole-usa"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","description":"Use 'specific-areas' to search for places in specific areas","enum":["specific-areas"]},"unionAll":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"regionType":{"type":"string","description":"Use 'circle' to search for places in a circle","enum":["circle"]},"center":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90,"description":"The latitude of the point."},"longitude":{"type":"number","minimum":-180,"maximum":180,"description":"The longitude of the point."}},"required":["latitude","longitude"]},"radiusMiles":{"type":"number","exclusiveMinimum":0,"maximum":250,"default":25,"description":"The radius of the circle in miles."}},"required":["regionType","center"]},{"type":"object","properties":{"regionType":{"type":"string","description":"Use 'rectangle' to search for places in a rectangle","enum":["rectangle"]},"northwestCorner":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90,"description":"The latitude of the point."},"longitude":{"type":"number","minimum":-180,"maximum":180,"description":"The longitude of the point."}},"required":["latitude","longitude"],"description":"The coordinates of the north west corner of the rectangle"},"southeastCorner":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90,"description":"The latitude of the point."},"longitude":{"type":"number","minimum":-180,"maximum":180,"description":"The longitude of the point."}},"required":["latitude","longitude"],"description":"The coordinates of the south east corner of the rectangle"}},"required":["regionType","northwestCorner","southeastCorner"]}]},"description":"An array of region definitions (rectangles and/or circles). All regions in this array will be unioned together to form the total search area."}},"required":["strategy","unionAll"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["world-cities"]},"countriesAndRegions":{"type":"object","properties":{"unionAll":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"subtractAll":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"smallestCityTierID":{"type":["string","null"],"enum":["mega","major","large","medium","minor","small","tiny",null]},"largestCityTierID":{"type":["string","null"],"enum":["mega","major","large","medium","minor","small","tiny",null]}},"required":["strategy","countriesAndRegions"]}],"description":"The strategy for searching places."}},"required":["apiKey","query","strategy"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per business found","variableCosts":[{"credits":3,"perUnit":"business found","operation":"googleMapsScrape"}],"chargingMethod":"charging-later"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"searchID":{"type":"string","description":"The ID of the Google Maps search. Use this to poll for the search results."}},"required":["searchID"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/person":{"post":{"operationId":"KitchenSinkProfile","summary":"Kitchen sink person lookup","tags":["Kitchen sink"],"description":"Search for a person using a variety of parameters such as LinkedIn slug, LinkedIn URL, email, or current company information. Returns profile data for the person if found. Providing more information (e.g. name + company + LinkedIn) improves match accuracy.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. LinkedIn live fetch credits only apply when the liveFetch flag is set.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 30 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 30 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"profileIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person (e.g. 'williamhgates' from linkedin.com/in/williamhgates)."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person (e.g. 'https://www.linkedin.com/in/williamhgates'). The https:// and www prefixes are optional."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["userID"]},"value":{"type":"string","description":"The LinkedIn user ID of the person."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn profile identifier (slug or URL). Provides the best match accuracy."},"emailAddress":{"type":["string","null"],"format":"email","description":"Email address to look up. Second-best accuracy after profileIdentifier."},"personName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the person to search for. It can have first name and/or last name. Try to pass in names as present on LinkedIn."},"looseMatch":{"type":"boolean","default":false,"description":"If true, allows partial and out-of-order matches. If false, only exact full name matches are returned."}},"description":"Person's name for matching. Best used with companyDomain or companyIdentifier."},"jobTitle":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The job title of the person to search for"}}},"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn identifier for the person's current company. Used with personName for matching."},"linkedinHeadline":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The headline of the person's LinkedIn profile. This is the first line of their profile."},"looseMatch":{"type":"boolean","default":false,"description":"Whether to allow a loose match on the headline. If true, we allow for additional words between the terms in the headline (e.g. 'Software Engineer' would match 'Software Development Engineer'). If false, we require a strict phrase match."}}},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the company the person is currently working at"}}},"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The domain of the company the person is currently working at"}},"description":"Domain of the person's current company (e.g. 'fiber.ai'). Used with personName for matching."},"profileLocation":{"type":["object","null"],"properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."},"stateName":{"type":["string","null"],"description":"State or region name in plain text (e.g. 'California', 'New York')."},"locality":{"type":["string","null"],"description":"Free-text location string. Use this when the location data does not clearly separate into country, state, or city."}},"description":"Location of the person. Accepts country code, state name, and/or a free-text locality string."},"numProfiles":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of profile results to return per lookup. Defaults to 1."},"liveFetch":{"type":["boolean","null"],"default":false,"description":"When true, triggers a real-time LinkedIn profile fetch. Costs additional credits. Useful for profiles not yet in the database or to get the freshest data."},"forceCompanyMatch":{"type":["boolean","null"],"default":false,"description":"When true, requires that the matched profile works at the specified company. Without this, the API may return profiles that match by name but work elsewhere."},"schoolName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the school the person is currently attending or has attended. If provided, we will lookup the person by school name."}}},"schoolIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the school"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the school"}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the school"}},"required":["identifier","value"]},{"type":"null"}],"description":"The identifier of the school the person is currently attending or has attended. If provided, we will lookup the person by school identifier."},"schoolDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The domain of the school the person is currently attending or has attended. If provided, we will lookup the person by school domain."}}},"fuzzySearch":{"type":["boolean","null"],"default":false,"description":"When true, enables fuzzy name matching. Useful when exact name spelling is uncertain."},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_education[] with school_details for each education entry."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_work_experiences[] with company_details (domains, preferred_name, linkedin_primary_slug, li_org_id) for each work experience. Use this to get company domains for a person."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.","variableCosts":[{"credits":2,"perUnit":"kitchen sink lookup","operation":"kitchenSinkPerson"},{"credits":2,"perUnit":"LinkedIn live fetch","operation":"liveEnrichPerson"}],"comment":"LinkedIn live fetch credits only apply when the liveFetch flag is set.","chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":30,"displayText":"30 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"description":"The list of profiles found for the given query"},"message":{"type":["string","null"],"description":"Additional context if no matching profile was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/company":{"post":{"operationId":"kitchenSinkCompany","summary":"Kitchen sink company lookup","tags":["Kitchen sink"],"description":"Search for a company using a variety of parameters such as LinkedIn slug, LinkedIn URL, name, etc. Returns complete company data if found.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per company lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"A unique identifier for the company. Accepts one of: linkedinSlug, linkedinUrl, or linkedinOrgID. Providing this increases the accuracy and speed of the lookup. If this is provided, you do not need to supply companyName or companyDomain."},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The name of the company. All input words must match."}}},"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The domain of the company. URL prefixes (https, www) are automatically stripped. Subdomains and path segments are preserved to support domains like 'instagram.com/company' or 'my_company.netlify.app'."}}},"companyLocation":{"type":["object","null"],"properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."},"stateName":{"type":["string","null"],"description":"State or region name in plain text (e.g. 'California', 'New York')."},"locality":{"type":["string","null"],"description":"Free-text location string. Use this when the location data does not clearly separate into country, state, or city."}},"description":"Company headquarters location. Helps disambiguate companies with similar names or domains by boosting matches in the specified location."},"numCompanies":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of company results to return. Sorted by best match. Defaults to 1."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per company lookup","variableCosts":[{"credits":2,"perUnit":"company lookup","operation":"kitchenSinkCompany"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}},"description":"The list of companies found for the given query"},"message":{"type":["string","null"],"description":"Additional context if no matching company was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/bulk/profile":{"post":{"operationId":"KitchenSinkBulkProfile","summary":"Kitchen sink bulk profile lookup","tags":["Kitchen sink"],"description":"Search for many people using a variety of parameters such as LinkedIn slug, LinkedIn URL, or current company information. Returns profile data for each person if found. Providing more information per person (e.g. name + company + LinkedIn) improves match accuracy.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. LinkedIn live fetch credits only apply when the liveFetch flag is set.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"profiles":{"type":"array","items":{"type":"object","properties":{"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The domain of the company the person is currently working at"}},"description":"Domain of the person's current company (e.g. 'fiber.ai'). Used with personName for matching."},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the company the person is currently working at"}}},"jobTitle":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The job title of the person to search for"}}},"personName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"minLength":1,"description":"The name of the person to search for. It can have first name and/or last name. Try to pass in names as present on LinkedIn."},"looseMatch":{"type":"boolean","default":false,"description":"If true, allows partial and out-of-order matches. If false, only exact full name matches are returned."}},"description":"Person's name for matching. Best used with companyDomain or companyIdentifier."},"numProfiles":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of profile results to return per lookup. Defaults to 1."},"profileIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person (e.g. 'williamhgates' from linkedin.com/in/williamhgates)."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person (e.g. 'https://www.linkedin.com/in/williamhgates'). The https:// and www prefixes are optional."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["userID"]},"value":{"type":"string","description":"The LinkedIn user ID of the person."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn profile identifier (slug or URL). Provides the best match accuracy."},"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"LinkedIn identifier for the person's current company. Used with personName for matching."},"emailAddress":{"type":["string","null"],"format":"email","description":"Email address to look up. Second-best accuracy after profileIdentifier."}},"description":"Parameters for searching for a person. Provide at least one parameter. More parameters improve match accuracy."},"minItems":1,"maxItems":50},"liveFetch":{"type":["boolean","null"],"default":false,"description":"When true, triggers a real-time LinkedIn profile fetch. Costs additional credits. Useful for profiles not yet in the database or to get the freshest data."},"forceCompanyMatch":{"type":["boolean","null"],"default":false,"description":"When true, requires that the matched profile works at the specified company. Without this, the API may return profiles that match by name but work elsewhere."},"fuzzySearch":{"type":["boolean","null"],"default":false,"description":"When true, enables fuzzy name matching. Useful when exact name spelling is uncertain."},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_education[] with school_details for each education entry."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"When true, returns detailed_work_experiences[] with company_details (domains, preferred_name, linkedin_primary_slug, li_org_id) for each work experience. Use this to get company domains for a person."}},"required":["apiKey","profiles"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"Pay per person: 2 credits per lookup, plus 2 additional credits when the liveFetch flag is set.","variableCosts":[{"credits":2,"perUnit":"lookup","operation":"kitchenSinkPerson"},{"credits":2,"perUnit":"LinkedIn live fetch","operation":"liveEnrichPerson"}],"comment":"LinkedIn live fetch credits only apply when the liveFetch flag is set.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]}},"description":"Profiles found for each lookup. A 2D array because each lookup may yield multiple profiles."},"message":{"type":["string","null"],"description":"Additional context if no matching profile was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/kitchen-sink/bulk/company":{"post":{"operationId":"kitchenSinkBulkCompany","summary":"Kitchen sink bulk company lookup","tags":["Kitchen sink"],"description":"Search for many companies using a variety of parameters such as LinkedIn slug, LinkedIn URL, name, etc. Returns complete company data if found.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per company lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companies":{"type":"array","items":{"type":"object","properties":{"companyIdentifier":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","description":"The LinkedIn slug of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","description":"The LinkedIn URL of the person's current company."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgID"]},"value":{"type":"string","description":"The LinkedIn organization ID of the person's current company."}},"required":["identifier","value"]},{"type":"null"}],"description":"A unique identifier for the company. Accepts one of: linkedinSlug, linkedinUrl, or linkedinOrgID. Providing this increases the accuracy and speed of the lookup. If this is provided, you do not need to supply companyName or companyDomain."},"companyName":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The name of the company. All input words must match."}}},"companyDomain":{"type":["object","null"],"properties":{"value":{"type":["string","null"],"description":"The domain of the company. URL prefixes (https, www) are automatically stripped. Subdomains and path segments are preserved to support domains like 'instagram.com/company' or 'my_company.netlify.app'."}}},"companyLocation":{"type":["object","null"],"properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."},"stateName":{"type":["string","null"],"description":"State or region name in plain text (e.g. 'California', 'New York')."},"locality":{"type":["string","null"],"description":"Free-text location string. Use this when the location data does not clearly separate into country, state, or city."}},"description":"Company headquarters location. Helps disambiguate companies with similar names or domains by boosting matches in the specified location."},"numCompanies":{"type":"integer","minimum":1,"maximum":10,"default":1,"description":"Maximum number of company results to return. Sorted by best match. Defaults to 1."}},"description":"Parameters for searching for a company. Provide at least one parameter. More parameters improve match accuracy."},"minItems":1,"maxItems":50}},"required":["apiKey","companies"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per company lookup","variableCosts":[{"credits":2,"perUnit":"company lookup","operation":"kitchenSinkCompany"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}}},"description":"Companies found for each lookup. A 2D array because each lookup may yield multiple companies."},"message":{"type":["string","null"],"description":"Additional context if no matching company was found."}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/company":{"post":{"operationId":"companyTypeahead","summary":"Company/School/Investor Typeahead","tags":["Typeaheads"],"description":"Search for companies, schools/universities, and investors by name. Supports partial inputs, which can enable typeaheads in your UI.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"startsWith":{"type":"string","minLength":1},"orgType":{"type":["string","null"],"enum":["investor","school",null],"description":"The organization type filter. Use 'investor', 'school', or omit for all types."}},"required":["apiKey","startsWith"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"getCompanyFromDb"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]}}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/job-title":{"post":{"operationId":"jobTitleRewrite","summary":"Job Title Synonym Expansion","tags":["Typeaheads"],"description":"Expand a job title into synonyms and related variations. Useful for broadening job title searches to improve yield.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"maxLength":200,"description":"The job title to expand into synonyms and variations."},"limit":{"type":"integer","minimum":1,"maximum":50,"default":10,"description":"Maximum number of suggestions to return."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"jobTitleRewrite"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"suggestions":{"type":"array","items":{"type":"string"}}},"required":["suggestions"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/location":{"post":{"operationId":"locationTypeahead","summary":"Location typeahead","tags":["Typeaheads"],"description":"Get the latitude/longitude of a given city, including prefixes (e.g. 'san fr'). This makes it good for typeaheads in your UI.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"maxLength":100,"description":"The search query for a location. Accepts a city name or ZIP/postal code, either complete (e.g. 'New York') or partial (e.g. 'san fr'). Neighborhoods, street addresses, states, and countries are not supported."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per request","variableCosts":[{"credits":1,"perUnit":"request","operation":"geolocation"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]}}},"required":["data"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/typeahead/skills":{"post":{"operationId":"skillsTypeahead","summary":"Skills Typeahead","tags":["Typeaheads"],"description":"Search for professional skills by name. Supports prefix and partial matches with relevance-based ranking. Useful for building autocomplete in search UIs.\n\n<span>⚡ <strong>Rate limit:</strong> 240 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Search query for skill names. Supports prefix and partial matches."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":240,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"array","items":{"type":"object","properties":{"skill":{"type":"string","minLength":1,"description":"The skill name"},"rank":{"type":"integer","exclusiveMinimum":0,"description":"Relevance rank within this result set (1 = best match)"}},"required":["skill","rank"]}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/validate-email/single":{"post":{"operationId":"emailBounceDetection","summary":"Validate a single email","tags":["Validation"],"description":"Checks if a given email is likely to bounce using multiple validation strategies. Works for catch-all email addresses, which are increasingly common yet hard for other APIs to validate.\n\n<span>⚡ <strong>Rate limit:</strong> 300 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per email validation&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"email":{"type":"string","format":"email","description":"The email address to validate."}},"required":["apiKey","email"]}}}},"x-rate-limit":{"max":300,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per email validation","variableCosts":[{"credits":1,"perUnit":"email validation","operation":"validateEmail"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"email":{"type":"string","format":"email","description":"The email address that was validated."},"is_catch_all":{"type":"boolean","description":"Whether the address is a catch-all email."},"is_role_based":{"type":"boolean","description":"Whether the address is role-based (e.g. 'sales@' or 'hello@') rather than a personal email."},"is_disposable":{"type":"boolean","description":"Whether the address uses a disposable email provider."},"is_consumer":{"type":"boolean","description":"Whether the address uses a consumer email service (e.g. Gmail, Outlook) rather than a commercial service."},"email_provider":{"type":"string","description":"The email provider."},"verdict":{"type":"string","enum":["ok","undeliverable","risky","inconclusive"],"description":"The final estimate of whether the email is likely to be correct and deliverable."},"deliverability_score":{"type":"integer","minimum":0,"maximum":100,"description":"The deliverability score out of 100. Higher scores are better."}},"required":["email","is_catch_all","is_role_based","is_disposable","is_consumer","email_provider","verdict","deliverability_score"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/validate-phone/single":{"post":{"operationId":"validatePhoneNumber","summary":"Validate a single phone number","tags":["Validation"],"description":"Validates a phone number and returns detailed information including whether it's valid, reachable (active/alive), carrier information, and the caller ID name associated with the number.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per phone validation&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"phoneNumber":{"type":"string","description":"Phone number to validate. E.164 (e.g. +14155551234) is recommended; other formats with spaces, dashes, or parentheses are accepted."}},"required":["apiKey","phoneNumber"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per phone validation","variableCosts":[{"credits":3,"perUnit":"phone validation","operation":"validatePhone"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"formattedNumber":{"type":["string","null"],"description":"Phone number in international format (e.g., +1 234 567 8900)"},"nationalFormat":{"type":["string","null"],"description":"Phone number in national format"},"countryCallingCode":{"type":["string","null"],"description":"Country calling code with plus prefix (e.g. '+1', '+44'), derived from validation result; not used as request input."},"countryIsoCode":{"type":["string","null"],"description":"ISO 3166-1 alpha-2 country code (e.g. 'US', 'GB'), derived from validation result; not used as request input."},"countryName":{"type":["string","null"],"description":"Full country name (e.g. 'United States'), derived from validation result."},"isValid":{"type":"boolean","description":"Whether the phone number is valid"},"isReachable":{"type":"string","enum":["reachable","not_reachable","bad_number","unknown"],"description":"Whether the phone number is currently reachable (alive/active status)"},"isPorted":{"type":"boolean","description":"Whether the number has been ported to a different carrier"},"isRoaming":{"type":"boolean","description":"Whether the number is currently roaming"},"currentCarrier":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"networkType":{"type":["string","null"]},"country":{"type":["string","null"]}},"description":"Information about the current carrier"},"originalCarrier":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"networkType":{"type":["string","null"]},"country":{"type":["string","null"]}},"description":"Information about the original carrier that issued the number"},"callerIdName":{"type":["string","null"],"description":"The name associated with this phone number (what shows up on caller ID)"},"validationScore":{"type":"integer","minimum":0,"maximum":10,"description":"Validation score from 0-10 (10 = valid and reachable, 6 = valid but not reachable, 2 = unknown, 0 = invalid)"},"validationStatus":{"type":"string","enum":["valid_reachable","valid_not_reachable","invalid","unknown"],"description":"Overall validation status"}},"required":["isValid","isReachable","isPorted","isRoaming","validationScore","validationStatus"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/nlp-search/parse":{"post":{"operationId":"nlpSearchParse","summary":"Parse natural language to search params","tags":["Agentic search"],"description":"Parses a natural language query into structured search parameters without executing the search.\n\nUse the returned `suggestedAction` to determine your next step:\n- `combinedSearch`: pass `parsedParams.companySearchParams` and `parsedParams.profileSearchParams` to POST /v1/combined-search/paginated\n- `companySearch`: pass `parsedParams.companySearchParams` to POST /v1/company-search\n- `profileSearch`: pass `parsedParams.profileSearchParams` to POST /v1/combined-search/paginated (with only profileConfig)\n- `personLookup`: use the `parsedParams.persons` array with POST /v1/person-lookup/enrich (one call per person)\n- `companyLookup`: use the `parsedParams.companies` array with POST /v1/company-lookup/enrich (one call per company)\n- `none`: query could not be interpreted\n\nAlternatively, use POST /v1/nlp-search/run to parse and execute in a single call.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"maxLength":5000,"description":"Natural language search query to parse into structured filters."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"textToSearchParams"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"searchId":{"type":"string","description":"Unique identifier for this search session. Stable across paginated requests — all pages share the same searchId."},"parsedParams":{"oneOf":[{"type":"object","properties":{"queryType":{"type":"string","enum":["structuredSearch"]},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]},"upperBoundInclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Parsed company search filters. Null if query only targets people."},"profileSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["operator","terms","negate"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}}},"required":["operator","clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"required":["getDetailedEducation","getDetailedWorkExperience"],"additionalProperties":false,"description":"Parsed people search filters. Null if query only targets companies.","default":{}}},"required":["queryType"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["personLookup"]},"persons":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Person's full name."},"email":{"type":["string","null"],"description":"Email address."},"linkedinUrl":{"type":["string","null"],"description":"LinkedIn profile URL."},"companyName":{"type":["string","null"],"description":"Company the person works at."},"jobTitle":{"type":["string","null"],"description":"Job title."}}},"minItems":1,"description":"One or more people to look up. Each entry identifies a specific person by name, email, LinkedIn URL, company, and/or job title."}},"required":["queryType","persons"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["companyLookup"]},"companies":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name."},"domain":{"type":["string","null"],"description":"Company domain (e.g. 'acme.com')."},"linkedinUrl":{"type":["string","null"],"description":"Company LinkedIn URL."}}},"minItems":1,"description":"One or more companies to look up."}},"required":["queryType","companies"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["unprocessable"]}},"required":["queryType"]}],"description":"Structured parameters parsed from the query. Shape depends on the queryType discriminator."},"suggestedAction":{"type":"string","enum":["combinedSearch","companySearch","profileSearch","personLookup","companyLookup","none"],"description":"Recommended next step based on the parsed query. See endpoint description for which API to call."},"unsupportedFilters":{"type":["array","null"],"items":{"type":"string"},"description":"Parts of the query that could not be expressed as structured search filters."}},"required":["searchId","parsedParams","suggestedAction"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/nlp-search/run":{"post":{"operationId":"slushieRun","summary":"Natural language search","tags":["Agentic search"],"description":"Takes free-form text (e.g., 'Senior Product Managers at Series A FinTech startups in New York') and returns matching companies or people. The API determines the result type based on query interpretation — company-specific queries return companies, everything else returns people. Supports cursor-based pagination via a single pageToken.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Fixed costs per request (first page only):<br />• 2 credits for AI search interpretation<br /><br />Variable costs per result:<br />• 1 credits per company returned<br />• 1 credits per profile returned&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 1 minute&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 1 minute for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":["string","null"],"minLength":1,"maxLength":5000,"description":"Natural language search query. Required on the first request. Ignored when pageToken is provided."},"pageSize":{"type":"integer","minimum":1,"maximum":1000,"default":25,"description":"Number of results per page (1-1000). Applied to whichever result type is returned."},"companyExclusionListIDs":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"IDs of exclusion lists to filter out companies. Applied when returning companies, or to narrow company-based profile filtering."},"peopleExclusionListIDs":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"IDs of exclusion lists to filter out people."},"pageToken":{"type":["string","null"],"description":"Opaque pagination token from a previous response. Pass the value of nextPageToken from the prior response."},"getDetailedEducation":{"type":["boolean","null"],"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it. Only applies when the result type is people; ignored for company results."},"getDetailedWorkExperience":{"type":["boolean","null"],"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it. Only applies when the result type is people; ignored for company results."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Fixed costs per request (first page only):\n• 2 credits for AI search interpretation\n\nVariable costs per result:\n• 1 credits per company returned\n• 1 credits per profile returned","variableCosts":[{"credits":2,"perUnit":"request","operation":"textToSearchParams"},{"credits":1,"perUnit":"result","operation":"getCompanyFromDb"},{"credits":1,"perUnit":"result","operation":"getPersonFromDb"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":60,"displayText":"1 minute"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"searchId":{"type":"string","description":"Unique identifier for this search session. Stable across paginated requests — all pages share the same searchId."},"parsedParams":{"oneOf":[{"type":"object","properties":{"queryType":{"type":"string","enum":["structuredSearch"]},"companySearchParams":{"type":["object","null"],"properties":{"exactCompanyV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"domain":{"type":"string","pattern":"^(https?:\\/\\/)?([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}(\\/.*)?$"}},"required":["identifier","domain"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri","pattern":"^https:\\/\\/(www\\.)?linkedin\\.com\\/company\\/[a-zA-Z0-9-]+\\/?.*$"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^[0-9]+$"}},"required":["identifier","org_id"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["advanced"]},"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string","minLength":1},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["identifier","li_org_id"]}]}}}},"domains":{"type":["array","null"],"items":{"type":"string"}},"headquartersCountryCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"headquartersStateName":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"employeeCountV2":{"type":["object","null"],"properties":{"lowerBoundExclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]},"upperBoundInclusive":{"anyOf":[{"type":"number","enum":[0]},{"type":"number","enum":[1]},{"type":"number","enum":[10]},{"type":"number","enum":[50]},{"type":"number","enum":[200]},{"type":"number","enum":[500]},{"type":"number","enum":[1000]},{"type":"number","enum":[5000]},{"type":"number","enum":[10000]},{"type":"null"}]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"industriesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}}}},"stage":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["acquired","public","closed","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity","unknown","no_funding_yet"]}}}},"totalFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundingUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"lastFundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"foundedOn":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"nameLike":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"exactCompany":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"acceleratorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"acceleratorName":{"type":"string","enum":["a16z_speedrun","accel_atoms","ai2_incubator","alchemist_accelerator","alliance","antler","berkeley_skydeck","founders_inc","google_startups","launch_accelerator","neo","pear_x","plug_and_play","sosv","south_park_commons","startx","techstars","the_mint","ycombinator"]},"batchSelection":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["all-batches"]}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["only-these-batches"]},"batches":{"type":"array","items":{"type":"string"},"minItems":0}},"required":["strategy","batches"]},{"type":"null"}]},"years":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["acceleratorName"]}}}},"headquartersLocation":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"linkedinSlugs":{"type":["array","null"],"items":{"type":"string"}},"specialFlags":{"type":["object","null"],"properties":{"excludeYcCompanies":{"type":["boolean","null"]}}},"employees":{"type":["object","null"],"properties":{"rules":{"type":"array","items":{"type":"object","properties":{"employeesToMatch":{"oneOf":[{"type":"object","properties":{"tag":{"type":"string","enum":["all"]}},"required":["tag"]},{"type":"object","properties":{"tag":{"type":"string","enum":["finiteRange"]},"lowerBound":{"type":["integer","null"],"minimum":0},"upperBound":{"type":["integer","null"],"minimum":0}},"required":["tag"]}]},"employeeFilters":{"type":["object","null"],"properties":{"countryCode":{"type":["array","null"],"items":{"type":"string"}},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"recentlyHired":{"type":["array","null"],"items":{"type":"object","properties":{"hiredAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}}}}}}},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]}},"required":["employeesToMatch"]}},"joiner":{"type":"string","enum":["AND","OR"]}},"required":["rules","joiner"]},"naicsCodes":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"code":{"type":"string"},"title":{"type":"string"}},"required":["code","title"]}}}},"fortuneRankings":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"range":{"type":"object","properties":{"low":{"type":"number"},"high":{"type":"number"},"name":{"type":["string","null"]}},"required":["low","high"]},"year":{"type":"number"}},"required":["list","range","year"]}}}},"jobPostingsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobPostingStatus":{"type":["string","null"],"enum":["active","closed","either",null]},"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"keywords":{"type":["array","null"],"items":{"type":"string"}},"postedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"numApplicants":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"annualPayUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"geoLocation":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]},{"type":"null"}]},"countryOrRegionCode":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"seniority":{"type":["array","null"],"items":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]}},"employmentType":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"jobFunction":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"industry":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"jobLocationType":{"type":["array","null"],"items":{"type":"string","enum":["On-site","Remote","Hybrid"]}}}}}}},"jobPostingStats":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"rule":{"type":"string","enum":["total"]},"count":{"type":"object","properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}}},"required":["rule","count"]},{"type":"object","properties":{"rule":{"type":"string","enum":["country"]},"countryCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","countryCode","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["seniority"]},"seniority":{"type":"string","enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive","Not Applicable"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","seniority","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["employment-type"]},"employmentType":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","employmentType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["job-function"]},"jobFunction":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","jobFunction","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["location-type"]},"locationType":{"type":"string","enum":["On-site","Remote","Hybrid"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","locationType","range"]},{"type":"object","properties":{"rule":{"type":"string","enum":["industry"]},"industry":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]},"range":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["count-range"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["percent-range"]},"rangeInHundredths":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","rangeInHundredths"]}]}},"required":["rule","industry","range"]}]}}}},"officeLocationsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["worldwide"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}}},"required":["type","range"]},{"type":"object","properties":{"type":{"type":"string","enum":["country-or-region"]},"range":{"type":"object","properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"countryOrRegionCode":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"required":["type","range","countryOrRegionCode"]},{"type":"object","properties":{"type":{"type":"string","enum":["geography"]},"location":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"required":["type","location"]}]}}}},"tlds":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"numWordsInName":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"status":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["active","acquired","closed"]}}}},"technologies":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["predefined"]},"technology":{"type":"string","enum":["Python","JavaScript","Java","C#","C++","Go","Rust","TypeScript","PHP","Ruby","Kotlin","Swift","Scala","SQL","Node.js","React","Angular","Vue.js","Next.js","Django","Flask","Spring Boot","Express","Laravel","WordPress","Shopify","Magento","Docker","Kubernetes","AWS","Google Cloud","Azure","Cloudflare","Nginx","Apache","Redis","PostgreSQL","MongoDB","MySQL","SQLite","Elasticsearch","RabbitMQ","Kafka","Terraform","Ansible","Prometheus","Grafana","Sentry","PagerDuty","New Relic","Datadog","Splunk","GitHub","GitLab","Bitbucket","Jenkins","CircleCI","Travis CI","Azure DevOps","Jira","Confluence","Slack","Microsoft Teams","Tableau","Power BI","Looker","Mixpanel","Amplitude","Google Analytics","Segment","HubSpot","Salesforce","Stripe","Intercom","Zendesk","Cursor","Windsurf","TensorFlow","PyTorch","Keras","Scikit-learn","OpenAI","Anthropic","GraphQL","Tailwind CSS","Bootstrap","Cassandra","DynamoDB","BigQuery","Redshift","ClickHouse","Neo4j","InfluxDB","TimescaleDB","CockroachDB","Supabase","PlanetScale","Prisma","Hasura","NestJS","Fastify","Railway","Fly.io","Render","Firebase","Playwright","Cypress","Selenium","Puppeteer","Helm","ELK Stack","dbt","Airflow","Apache Spark","Hadoop","NumPy","Jupyter","Elixir","LangChain","Kubeflow","Weights & Biases","CUDA","Algolia","OpenSearch","Solr","WooCommerce","Contentful","Netlify","Vercel","Databricks","Snowflake","Notion","Twilio","Klaviyo","Webflow","Rippling","Gusto","Zapier","Marketo","ServiceNow","Cloudinary"]}},"required":["type","technology"]},{"type":"object","properties":{"type":{"type":"string","enum":["custom"]},"name":{"type":"string"}},"required":["type","name"]}]}}}},"crunchbaseCategories":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"category":{"type":"string"},"type":{"type":"string","enum":["category"]}},"required":["group","category","type"]}}}},"crunchbaseCategoryGroups":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"group":{"type":"string"},"type":{"type":"string","enum":["group"]}},"required":["group","type"]}}}},"crunchbaseSlugs":{"type":["array","null"],"items":{"type":"string","minLength":1}},"investorsV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"investorIdentifier":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["domain"]},"domain":{"type":"string","minLength":1}},"required":["type","domain"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["type","linkedin_url"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["type","linkedin_slug"]},{"type":"object","properties":{"type":{"type":"string","enum":["linkedin-org-id"]},"org_id":{"type":"string","pattern":"^\\d+$","minLength":1}},"required":["type","org_id"]}]},"investedAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"investmentRounds":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"string","enum":["pre_seed","venture_other","private_equity","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j"]}}},"required":["anyOf"]}},"required":["investorIdentifier"]}}}},"technologiesV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"allOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"revenueRangeUSD":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"]},"upperBound":{"type":["integer","null"]}}},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}}}},"linkedinIndustries":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["totalFunding","lastRoundFunding","lastFundedAt","foundedAt","followerCount","jobPostingCount","employeeCount","revenueEstimate"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for company results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"description":"Parsed company search filters. Null if query only targets people."},"profileSearchParams":{"type":["object","null"],"properties":{"country3LetterCode":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["USA","GBR","FRA","IND","BRA","DEU","ESP","CAN","AUS","NLD","ITA","ZAF","BEL","CHN","TUR","MEX","CHE","NOR","ARE","SWE","POL","IDN","ARG","PRT","COL","CHL","PAK","DNK","JPN","NGA","SGP","PER","NZL","AUT","IRL","MYS","BGD","EGY","ISR","SAU","PHL","FIN","IRN","ROU","CZE","GRC","HKG","HUN","KEN","MAR","VNM","RUS","UKR","ECU","THA","LKA","KOR","BGR","GHA","SRB","TWN","HRV","LTU","PRI","SVK","TUN","EST","VEN","CRI","PAN","URY","LBN","LUX","CYP","NPL","JOR","SVN","MTQ","QAT","GLP","UGA","DZA","GTM","CMR","LVA","DOM","AZE","GEO","SEN","TZA","ZWE","KWT","MLT","OMN","BOL","SLV","ARM","PRY","IRQ","KHM","BIH","AGO","BHR","ALB","KAZ","CIV","ETH","MUS","ZMB","MKD","COD","BLR","MOZ","REU","TTO","GUF","ISL","MMR","HND","RWA","MDG","BEN","UZB","NAM","BWA","MDA","JEY","NIC","SDN","JAM","IMN","BFA","MNG","MNE","MCO","TGO","AFG","LBY","XKX","CYM","MWI","SOM","PNG","MDV","MLI","GIN","PSE","GAB","LIE","HTI","SYR","BRB","YEM","GGY","NCL","AND","SUR","MYT","KGZ","BHS","GIB","COG","FJI","BLM","CUW","CUB","SLE","BLZ","NER","LBR","VIR","PYF","GUM","MRT","ABW","SYC","GUY","LSO","SWZ","SSD","LCA","MAC","SMR","LAO","BRN","TCD","BMU","VGB","PRK","BTN","BDI","FRO","TJK","GMB","STP","ANT","VCT","DJI","CPV","TKM","ATG","TCA","KNA","GRD","ASM","VUT","GNQ","GRL","SXM","MNP","COM","TLS","SJM","CAF","DMA","MAF","WSM","BES","MHL","AIA","TON","COK","SLB","SPM","GNB","ATA","TUV","ALA","IOT","ERI","PLW","FSM","NRU","PCN","FLK","MSR","VAT","KIR","SHN","NIU","WLF","HMD","CXR","NFK","ATF","CCK","SGS","BVT","UMI","ESH","TKL","X-SOUTH_ASIA","X-SOUTH_EAST_EUROPE","X-NORTHERN_AFRICA","X-PACIFIC","X-SOUTH_WEST_EUROPE","X-SOUTHERN_AFRICA","X-WEST_INDIES","X-SOUTH_AMERICA","X-SOUTH_WEST_ASIA","X-CENTRAL_EUROPE","X-EASTERN_EUROPE","X-WESTERN_EUROPE","X-CENTRAL_AMERICA","X-WESTERN_AFRICA","X-SOUTH_ATLANTIC_OCEAN","X-SOUTH_EAST_ASIA","X-CENTRAL_AFRICA","X-NORTH_AMERICA","X-EAST_ASIA","X-NORTHERN_EUROPE","X-EASTERN_AFRICA","X-SOUTHERN_INDIAN_OCEAN","X-SOUTHERN_EUROPE","X-CENTRAL_ASIA","X-NORTHERN_ASIA","X-ASIA","X-EUROPE","X-AFRICA","X-OCEANIA","X-AMERICAS","X-ANTARCTICA","X-ATLANTIC_OCEAN","X-INDIAN_OCEAN","X-MIDDLE_EAST","X-MENA","X-EMEA","X-EUROPEAN_UNION","X-EFTA","X-APAC","X-LATAM","X-ANGLOSPHERE","X-DACH","X-NORDICS","X-BENELUX","X-GCC","X-BRICS","X-G20","X-OECD","X-SANCTIONED"]}}}},"numConnections":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"numFollowers":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"approxAge":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"keywords":{"type":["object","null"],"properties":{"containsAll":{"type":["array","null"],"items":{"type":"string"}},"containsAny":{"type":["array","null"],"items":{"type":"string"}},"containsNone":{"type":["array","null"],"items":{"type":"string"}}}},"keywordsV2":{"type":["object","null"],"properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"AND"},"clauses":{"type":"array","items":{"type":"object","properties":{"operator":{"type":"string","enum":["AND","OR"],"default":"OR"},"terms":{"type":"array","items":{"type":"string"},"minItems":1},"negate":{"type":"boolean","default":false}},"required":["operator","terms","negate"]},"minItems":1},"options":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}}},"required":["operator","clauses"]},"keywordSearchOptions":{"type":["object","null"],"properties":{"fieldsToSearchOver":{"type":["object","null"],"properties":{"summary":{"type":"boolean","default":true},"headline":{"type":"boolean","default":true},"pastJobTitles":{"type":"boolean","default":true},"pastJobSummaries":{"type":"boolean","default":true},"pastCompanyNames":{"type":"boolean","default":true},"currentJobTitles":{"type":"boolean","default":true},"currentJobSummaries":{"type":"boolean","default":true},"currentCompanyNames":{"type":"boolean","default":true},"interests":{"type":"boolean","default":true},"skills":{"type":"boolean","default":true},"industry":{"type":"boolean","default":true},"education":{"type":"boolean","default":true},"publications":{"type":"boolean","default":true},"certifications":{"type":"boolean","default":true},"articles":{"type":"boolean","default":true},"courses":{"type":"boolean","default":true},"projects":{"type":"boolean","default":true},"patents":{"type":"boolean","default":true},"volunteering":{"type":"boolean","default":false},"languages":{"type":"boolean","default":false}},"required":["summary","headline","pastJobTitles","pastJobSummaries","pastCompanyNames","currentJobTitles","currentJobSummaries","currentCompanyNames","interests","skills","industry","education","publications","certifications","articles","courses","projects","patents","volunteering","languages"]}}},"jobTitleV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["term"]},"term":{"type":"string"}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["static-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["founder","c-suite","board-member"]}}},"required":["type","groups"]},{"type":"object","properties":{"type":{"type":"string","enum":["dynamic-groups"]},"groups":{"type":"array","items":{"type":"string","enum":["vp","director","management","entry-level","assistant","intern"]}},"keywords":{"type":"array","items":{"type":"string"},"default":[]}},"required":["type","groups","keywords"]}]}}}},"exactProfile":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"profile_id":{"type":["string","null"]},"primary_slug":{"type":["string","null"]}}}}}},"exactProfileV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-slug"]},"linkedin_slug":{"type":"string","minLength":1}},"required":["identifier","linkedin_slug"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-url"]},"linkedin_url":{"type":"string","format":"uri"}},"required":["identifier","linkedin_url"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedin-user-id"]},"user_id":{"type":"string","pattern":"^[0-9]+$","minLength":1}},"required":["identifier","user_id"]}]}}}},"startedInRole":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedAtCompany":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"location":{"type":["object","null"],"properties":{"unionAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}},"subtractAll":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["radial-distance"]},"center":{"type":"object","properties":{"name":{"type":["string","null"]},"address":{"type":["string","null"]},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","center","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["free-form-city"]},"city":{"type":"string","minLength":1},"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"radius":{"oneOf":[{"type":"object","properties":{"unit":{"type":"string","enum":["miles"]},"quantity":{"type":"number","minimum":0,"maximum":12500}},"required":["unit","quantity"]},{"type":"object","properties":{"unit":{"type":"string","enum":["kilometers"]},"quantity":{"type":"number","minimum":0,"maximum":20100}},"required":["unit","quantity"]}]}},"required":["strategy","city","radius"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["polygon"]},"vertices":{"type":"array","items":{"type":"object","properties":{"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"required":["latitude","longitude"]},"minItems":4,"maxItems":1000}},"required":["strategy","vertices"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["preset-region"]},"region":{"type":"string","enum":["sf-bay-area","sf-north-bay","sf-east-bay","sf-south-bay","sf-peninsula","greater-new-york","chicagoland","washington-dmv","greater-los-angeles","inland-empire","greater-philadelphia","boston-route-128","greater-austin","toronto-golden-horseshoe","greater-london","greater-tokyo","research-triangle","seattle-puget-sound","dallas-fort-worth","miami-south-florida","slc-silicon-slopes","denver-front-range"]}},"required":["strategy","region"]}]}}}},"pastJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"currentJobs":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"jobTitle":{"type":["array","null"],"items":{"type":"string"}},"company":{"type":["object","null"],"properties":{"linkedin_id":{"type":["string","null"]},"li_org_id":{"type":"string"},"preferred_name":{"type":["string","null"]},"names":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"logo_url":{"type":["string","null"]},"source":{"type":["string","null"],"enum":["csv",null]}},"required":["li_org_id"]}}}}}},"languages":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Afrikaans","Akan","Albanian","Alsatian","Amharic","Arabic","Armenian","Assamese","Assyrian","Awadhi","Azerbaijani","Balinese","Balochi","Bambara","Basque","Belarusian","Bemba","Bengali","Bhojpuri","Bisaya","Bosnian","Breton","Bulgarian","Burmese","Cantonese","Catalan","Cebuano","Croatian","Czech","Danish","Dari","Dhivehi","Dholuo","Dogri","Dutch","Dzongkha","Efik","English","Esperanto","Estonian","Ewe","Fante","Faroese","Fijian","Finnish","Flemish","Fon","French","Frisian","Fula","Ga","Galician","Garhwali","Georgian","German","Greek","Guarani","Gujarati","Haitian Creole","Hakka","Haryanvi","Hausa","Hawaiian","Hebrew","Hiligaynon","Hindi","Hindko","Hmong","Hungarian","Iban","Ibibio","Icelandic","Igala","Igbo","Ilocano","Indonesian","Irish","Italian","Japanese","Javanese","Kabyle","Kamba","Kannada","Kapampangan","Kashmiri","Kazakh","Khmer","Kikuyu","Kinyarwanda","Kirundi","Kongo","Konkani","Korean","Krio","Kurdish","Kutchi","Kyrgyz","Lao","Latin","Latvian","Limburgish","Lingala","Lithuanian","Lozi","Luganda","Luhya","Luxembourgish","Macedonian","Magahi","Maithili","Malagasy","Malay","Malayalam","Maltese","Mandarin","Mandinka","Manipuri","Maori","Marathi","Marwari","Mauritian Creole","Minangkabau","Mongolian","Montenegrin","Navajo","Nepali","Newar","North Frisian","Northern Ndebele","Northern Sotho","Norwegian","Nyanja","Odia","Oromo","Ovambo","Papiamento","Pashto","Persian","Polish","Portuguese","Punjabi","Putonghua","Quechua","Rajasthani","Romanian","Russian","Samoan","Sanskrit","Saraiki","Saurashtra","Scottish Gaelic","Serbian","Shanghainese","Shona","Sign Languages","Sindhi","Sinhalese","Slovak","Slovenian","Soga","Somali","Southern Min","Southern Ndebele","Southern Sotho","Spanish","Sranan Tongo","Sundanese","Swahili","Swazi","Swedish","Tagalog/Filipino","Taiwanese Hokkien","Tajik","Tamazight","Tamil","Tatar","Telugu","Teochew","Tetum","Thai","Tibetan","Tigrinya","Tok Pisin","Tongan","Tsonga","Tswana","Tulu","Tumbuka","Turkish","Turkmen","Twi","Ukrainian","Urdu","Uyghur","Uzbek","Valencian","Venda","Vietnamese","Waray","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zulu"]}}}},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isInStealth":{"type":["boolean","null"]},"stealthV2":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-in-stealth"]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["left-stealth"]},"leftStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"enteredStealthAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"stealthDuration":{"type":["object","null"],"properties":{"range":{"type":"object","properties":{"lowerBound":{"type":"number","minimum":0},"upperBound":{"type":"number","minimum":1}},"required":["lowerBound","upperBound"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["range","period"]}},"required":["status"]},{"type":"null"}]},"jobStatus":{"oneOf":[{"type":"object","properties":{"status":{"type":"string","enum":["currently-employed"]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["previously-employed"]},"leftAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]}},"required":["status"]},{"type":"object","properties":{"status":{"type":"string","enum":["ever-employed"]}},"required":["status"]},{"type":"null"}]},"timeZone":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"strategy":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["midpoint-with-buffer"]},"midpointTimeZoneName":{"type":"string"},"maxMinutesWestward":{"type":"integer","minimum":0},"maxMinutesEastward":{"type":"number","minimum":0},"includePartialYearMatches":{"type":"boolean"}},"required":["mode","midpointTimeZoneName","maxMinutesWestward","maxMinutesEastward","includePartialYearMatches"]}]}},"required":["strategy"]}}},"required":["anyOf"]},"pastJobText":{"type":["object","null"],"properties":{"joiner":{"type":"string","enum":["and","or"]},"criteria":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","enum":["title","summary","anywhere"]},"rule":{"type":"string","enum":["includes","excludes"]},"text":{"type":["string","null"]}},"required":["field","rule"]}}},"required":["joiner","criteria"]},"fuzzyName":{"type":["object","null"],"properties":{"anyOf":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}}},"required":["anyOf"]},"companyMatchMode":{"oneOf":[{"type":"object","properties":{"mode":{"type":"string","enum":["strict"]}},"required":["mode"]},{"type":"object","properties":{"mode":{"type":"string","enum":["loose"]}},"required":["mode"]},{"type":"null"}]},"yearsOfExperience":{"type":["object","null"],"properties":{"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}}},"jobTitleV3":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"allOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}},"noneOf":{"type":["array","null"],"items":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["plain"]},"term":{"type":"string","minLength":1}},"required":["type","term"]},{"type":"object","properties":{"type":{"type":"string","enum":["functional"]},"keywords":{"type":["array","null"],"items":{"type":"string","minLength":1}},"seniority":{"type":"array","items":{"type":"string","enum":["senior","staff","principal","lead","manager","head","director","vp","svp","c-suite"]},"minItems":1}},"required":["type","seniority"]},{"type":"object","properties":{"type":{"type":"string","enum":["cartesian"]},"keywordArrays":{"type":"array","items":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"minItems":2}},"required":["type","keywordArrays"]}]}}}},"openToWork":{"type":["boolean","null"]},"hasProfilePicture":{"type":["boolean","null"]},"state":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"countryCode":{"type":["string","null"],"minLength":3,"maxLength":3},"stateName":{"type":"string"}},"required":["stateName"]}}}},"certifications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"publications":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}}}}}},"hasNoEducation":{"type":["boolean","null"]},"employmentType":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}}}},"getDetailedEducation":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each educational item, like the school's LinkedIn URL, website, location, etc. That'll be put in the detailedEducation array. This slows down the API call, so only enable this if you need it."},"getDetailedWorkExperience":{"type":["boolean","null"],"default":false,"description":"Whether to include deep details about each work experience item, like the company's LinkedIn URL, website, location, etc. That'll be put in the detailedWorkExperience array. This slows down the API call, so only enable this if you need it."},"tags":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"allOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}}}},"education":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}},"allOf":{"type":["array","null"],"items":{"type":"object","properties":{"school":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"schoolV2":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}},"noneOf":{"type":["array","null"],"items":{"type":"object","properties":{"linkedinId":{"type":["string","null"],"description":"The LinkedIn organization ID of the school, like 1646 for Harvard University"},"linkedinUrl":{"type":["string","null"],"description":"The LinkedIn URL of the school, like 'https://www.linkedin.com/school/harvard-university/'"},"domain":{"type":["string","null"],"description":"The domain of the school, like 'harvard.edu'"}},"description":"Requires at least one identifier: LinkedIn school ID, LinkedIn URL, or website domain to uniquely identify the school."}}}},"keywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degree":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"degreeV2":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["text"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}}},"required":["method","criteria"]},{"type":"object","properties":{"method":{"type":"string","enum":["level"]},"criteria":{"type":"object","properties":{"anyOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}},"noneOf":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate","Bachelor","Master","Doctorate","Business","Law","Medicine","Dentistry","Nursing","Pharmacy","Public Health","Public Policy","Education","Social Work","Divinity","Architecture"]}}}}},"required":["method","criteria"]},{"type":"null"}]},"schoolNameKeywords":{"type":["object","null"],"properties":{"anyOf":{"type":["array","null"],"items":{"type":"string"}},"noneOf":{"type":["array","null"],"items":{"type":"string"}}}},"finishedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"startedSchoolAt":{"oneOf":[{"type":"object","properties":{"strategy":{"type":"string","enum":["absolute"]},"range":{"type":["object","null"],"properties":{"lowerBound":{"type":["string","null"]},"upperBound":{"type":["string","null"]}}}},"required":["strategy"]},{"type":"object","properties":{"strategy":{"type":"string","enum":["relative"]},"window":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["lastN"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"quantity":{"type":"number","minimum":1}},"required":["method","period","quantity"]},{"type":"object","properties":{"method":{"type":"string","enum":["within"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]},"lowerBound":{"type":["number","null"]},"upperBound":{"type":["number","null"]}},"required":["method","period"]},{"type":"object","properties":{"method":{"type":"string","enum":["calendar"]},"which":{"type":"string","enum":["current","previous"]},"period":{"type":"string","enum":["day","week","month","quarter","year"]}},"required":["method","which","period"]},{"type":"null"}]}},"required":["strategy"]},{"type":"null"}]},"isCurrentlyStudent":{"type":["boolean","null"]}}}}}},"sort":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","enum":["followerCount","connectionCount","careerStartedAt","dataUpdatedAt","currentRoleStartedAt","currentCompanyStartedAt","jobCount"]},"direction":{"type":"string","enum":["asc","desc"]}},"required":["field","direction"]},"maxItems":3,"description":"Sort order for people results. Clauses are applied in order. Omit to use the default ranking. Note: changing the sort invalidates any existing cursor — start a new pagination run when the sort changes."}},"required":["getDetailedEducation","getDetailedWorkExperience"],"additionalProperties":false,"description":"Parsed people search filters. Null if query only targets companies.","default":{}}},"required":["queryType"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["personLookup"]},"persons":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Person's full name."},"email":{"type":["string","null"],"description":"Email address."},"linkedinUrl":{"type":["string","null"],"description":"LinkedIn profile URL."},"companyName":{"type":["string","null"],"description":"Company the person works at."},"jobTitle":{"type":["string","null"],"description":"Job title."}}},"minItems":1,"description":"One or more people to look up. Each entry identifies a specific person by name, email, LinkedIn URL, company, and/or job title."}},"required":["queryType","persons"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["companyLookup"]},"companies":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name."},"domain":{"type":["string","null"],"description":"Company domain (e.g. 'acme.com')."},"linkedinUrl":{"type":["string","null"],"description":"Company LinkedIn URL."}}},"minItems":1,"description":"One or more companies to look up."}},"required":["queryType","companies"]},{"type":"object","properties":{"queryType":{"type":"string","enum":["unprocessable"]}},"required":["queryType"]},{"type":"null"}],"description":"Structured search parameters generated from the query. Shows how the natural language was interpreted."},"nextPageToken":{"type":["string","null"],"description":"Pass as pageToken in the next request for the next page. Null when there are no more results."},"unsupportedFilters":{"type":["array","null"],"items":{"type":"string"},"description":"Parts of the query that could not be expressed as structured search filters."},"autoLoosenings":{"type":["array","null"],"items":{"type":"string"},"description":"Filters that were automatically relaxed to find results when the original query returned 0. Only present on the first page."},"notices":{"type":["array","null"],"items":{"type":"string"},"description":"Informational notices about search results, e.g. when filters are too strict and produce zero matches."},"results":{"oneOf":[{"type":"object","properties":{"resultType":{"type":"string","description":"Indicates company results are returned.","enum":["companies"]},"companies":{"type":"array","items":{"type":"object","properties":{"linkedin_id":{"type":["string","null"]},"accelerator_statuses":{"type":["array","null"],"items":{"type":"string"}},"accelerators":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"slug":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string"}},"year":{"type":["number","null"]},"batch":{"type":["string","null"]},"founders":{"type":["array","null"],"items":{"type":"object","properties":{"full_name":{"type":["string","null"]},"bio":{"type":["string","null"]},"job_title":{"type":["string","null"]},"is_active":{"type":["boolean","null"]},"email_address":{"type":["string","null"]},"facebook_url":{"type":["string","null"]},"twitter_handle":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"github_username":{"type":["string","null"]}}}},"description":{"type":["string","null"]},"one_liner":{"type":["string","null"]},"company_name":{"type":["string","null"]},"company_domain":{"type":["string","null"]},"accelerator_name":{"type":["string","null"]},"accelerator_domain":{"type":["string","null"]}}}},"blog_urls":{"type":["array","null"],"items":{"type":"string"}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"domains":{"type":["array","null"],"items":{"type":"string"}},"emails":{"type":["array","null"],"items":{"type":"string"}},"phone_numbers":{"type":["array","null"],"items":{"type":"string"}},"employee_count_consensus":{"type":["object","null"],"properties":{"gte":{"type":["number","null"]},"lte":{"type":["number","null"]}}},"facebook_urls":{"type":["array","null"],"items":{"type":"string"}},"fortune_rankings":{"type":["array","null"],"items":{"type":"object","properties":{"list":{"type":"string","enum":["fortune-500-usa"]},"year":{"type":"number"},"rank":{"type":"number"}},"required":["list","year","rank"]}},"founded_on_consensus":{"type":["string","null"]},"github_usernames":{"type":["array","null"],"items":{"type":"string"}},"instagram_handles":{"type":["array","null"],"items":{"type":"string"}},"latest_funding_consensus":{"type":["number","null"]},"linkedin_slugs":{"type":["array","null"],"items":{"type":"string"}},"linkedin_primary_slug":{"type":["string","null"]},"li_org_id":{"type":["string","null"]},"li_category":{"type":["string","null"],"enum":["W","S","C",null]},"li_job_posts_stats":{"type":["object","null"],"properties":{"total_count":{"type":"number"},"seniority_stats":{"type":["object","null"],"properties":{"Entry level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Director":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Associate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mid-Senior level":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Executive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Not Applicable":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"employment_type_stats":{"type":["object","null"],"properties":{"Full-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Temporary":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Internship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Contract":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Part-time":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Volunteer":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"country_location_stats":{"type":["object","null"],"properties":{"USA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DEU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NLD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ITA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MEX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"POL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DNK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JPN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NZL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SAU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ROU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HKG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VNM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UKR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ECU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"THA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LKA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BGR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GHA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TWN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HRV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LTU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"EST":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CRI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PAN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"URY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LUX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NPL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JOR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SVN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MTQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"QAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GLP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UGA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GTM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LVA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AZE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GEO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TZA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZWE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KWT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"OMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BOL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ARM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IRQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KHM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BIH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KAZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CIV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ETH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MUS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ZMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MKD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MOZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"REU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TTO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ISL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"RWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BEN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UZB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BWA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JEY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SDN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"JAM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IMN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BFA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MCO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TGO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AFG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"XKX":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CYM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MWI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SOM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PNG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MDV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MLI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PSE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GAB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LIE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HTI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"YEM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GGY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NCL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AND":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SUR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MYT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KGZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BHS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GIB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CUB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLE":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BLZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NER":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LBR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PYF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MRT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ABW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SYC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GUY":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LSO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SWZ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SSD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAC":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SMR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"LAO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BRN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BMU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VGB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PRK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BTN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BDI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FRO":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TJK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GMB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"STP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ANT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VCT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DJI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CPV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATG":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TCA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KNA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ASM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VUT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNQ":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GRL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SXM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MNP":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TLS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SJM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"DMA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MAF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BES":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MHL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"AIA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TON":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"COK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SLB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SPM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"GNB":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TUV":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ALA":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"IOT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ERI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PLW":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FSM":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NRU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"PCN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"FLK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"MSR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"VAT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"KIR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SHN":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NIU":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"WLF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"HMD":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CXR":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"NFK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ATF":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"CCK":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"SGS":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"BVT":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"UMI":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"ESH":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"TKL":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"puree_job_functions_stats":{"type":["object","null"],"properties":{"Arts and Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Development":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Community & Social Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entrepreneurship":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Human Resources":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Military & Protective Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Operations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Program & Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sales":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Support":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Administrative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Purchasing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Product Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Analyst":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Customer Service":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Distribution":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"General Business":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Other":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Public Relations":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Project Management":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Production":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Quality Assurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Research":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Supply Chain":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Training":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Health Care Provider":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Accounting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Art / Creative":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Strategy / Planning":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Writing / Editing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"standard_industries_stats":{"type":["object","null"],"properties":{"Administrative Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Aerospace & Military":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Artificial Intelligence":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Arts & Music":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Automotive":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Business Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Cloud":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Construction":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consulting":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Goods":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Consumer Services":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Design":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Education":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Energy":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Entertainment":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Environmental":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Events":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Farming & Agriculture":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Finance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Food & Beverage":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Gaming":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Government":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hardware":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Healthcare":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hospitality":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Industrials":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Information Technology":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Insurance":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Legal":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Life Sciences":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Logistics":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Manufacturing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Marketing & Advertising":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Media":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Mining":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Nonprofit":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Publishing":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Real Estate":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Retail":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Science & Engineering":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Security":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Software":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Sports":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Telecom":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Trade":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Transportation":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Travel & Tourism":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Utilities":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Venture Capital":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false},"job_location_type_stats":{"type":["object","null"],"properties":{"On-site":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Remote":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]},"Hybrid":{"type":"object","properties":{"count":{"type":"number"},"fraction":{"type":"number"}},"required":["count","fraction"]}},"additionalProperties":false}},"required":["total_count"]},"li_description":{"type":["string","null"]},"li_follower_count":{"type":["number","null"]},"li_headline":{"type":["string","null"]},"li_industries":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"primary":{"type":["boolean","null"]}},"required":["id","name"]}},"li_locations":{"type":["array","null"],"items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}},"li_specialties":{"type":["array","null"],"items":{"type":"string"}},"location_consensus":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"locations_stats":{"type":["object","null"],"properties":{"USA":{"type":"number"},"GBR":{"type":"number"},"FRA":{"type":"number"},"IND":{"type":"number"},"BRA":{"type":"number"},"DEU":{"type":"number"},"ESP":{"type":"number"},"CAN":{"type":"number"},"AUS":{"type":"number"},"NLD":{"type":"number"},"ITA":{"type":"number"},"ZAF":{"type":"number"},"BEL":{"type":"number"},"CHN":{"type":"number"},"TUR":{"type":"number"},"MEX":{"type":"number"},"CHE":{"type":"number"},"NOR":{"type":"number"},"ARE":{"type":"number"},"SWE":{"type":"number"},"POL":{"type":"number"},"IDN":{"type":"number"},"ARG":{"type":"number"},"PRT":{"type":"number"},"COL":{"type":"number"},"CHL":{"type":"number"},"PAK":{"type":"number"},"DNK":{"type":"number"},"JPN":{"type":"number"},"NGA":{"type":"number"},"SGP":{"type":"number"},"PER":{"type":"number"},"NZL":{"type":"number"},"AUT":{"type":"number"},"IRL":{"type":"number"},"MYS":{"type":"number"},"BGD":{"type":"number"},"EGY":{"type":"number"},"ISR":{"type":"number"},"SAU":{"type":"number"},"PHL":{"type":"number"},"FIN":{"type":"number"},"IRN":{"type":"number"},"ROU":{"type":"number"},"CZE":{"type":"number"},"GRC":{"type":"number"},"HKG":{"type":"number"},"HUN":{"type":"number"},"KEN":{"type":"number"},"MAR":{"type":"number"},"VNM":{"type":"number"},"RUS":{"type":"number"},"UKR":{"type":"number"},"ECU":{"type":"number"},"THA":{"type":"number"},"LKA":{"type":"number"},"KOR":{"type":"number"},"BGR":{"type":"number"},"GHA":{"type":"number"},"SRB":{"type":"number"},"TWN":{"type":"number"},"HRV":{"type":"number"},"LTU":{"type":"number"},"PRI":{"type":"number"},"SVK":{"type":"number"},"TUN":{"type":"number"},"EST":{"type":"number"},"VEN":{"type":"number"},"CRI":{"type":"number"},"PAN":{"type":"number"},"URY":{"type":"number"},"LBN":{"type":"number"},"LUX":{"type":"number"},"CYP":{"type":"number"},"NPL":{"type":"number"},"JOR":{"type":"number"},"SVN":{"type":"number"},"MTQ":{"type":"number"},"QAT":{"type":"number"},"GLP":{"type":"number"},"UGA":{"type":"number"},"DZA":{"type":"number"},"GTM":{"type":"number"},"CMR":{"type":"number"},"LVA":{"type":"number"},"DOM":{"type":"number"},"AZE":{"type":"number"},"GEO":{"type":"number"},"SEN":{"type":"number"},"TZA":{"type":"number"},"ZWE":{"type":"number"},"KWT":{"type":"number"},"MLT":{"type":"number"},"OMN":{"type":"number"},"BOL":{"type":"number"},"SLV":{"type":"number"},"ARM":{"type":"number"},"PRY":{"type":"number"},"IRQ":{"type":"number"},"KHM":{"type":"number"},"BIH":{"type":"number"},"AGO":{"type":"number"},"BHR":{"type":"number"},"ALB":{"type":"number"},"KAZ":{"type":"number"},"CIV":{"type":"number"},"ETH":{"type":"number"},"MUS":{"type":"number"},"ZMB":{"type":"number"},"MKD":{"type":"number"},"COD":{"type":"number"},"BLR":{"type":"number"},"MOZ":{"type":"number"},"REU":{"type":"number"},"TTO":{"type":"number"},"GUF":{"type":"number"},"ISL":{"type":"number"},"MMR":{"type":"number"},"HND":{"type":"number"},"RWA":{"type":"number"},"MDG":{"type":"number"},"BEN":{"type":"number"},"UZB":{"type":"number"},"NAM":{"type":"number"},"BWA":{"type":"number"},"MDA":{"type":"number"},"JEY":{"type":"number"},"NIC":{"type":"number"},"SDN":{"type":"number"},"JAM":{"type":"number"},"IMN":{"type":"number"},"BFA":{"type":"number"},"MNG":{"type":"number"},"MNE":{"type":"number"},"MCO":{"type":"number"},"TGO":{"type":"number"},"AFG":{"type":"number"},"LBY":{"type":"number"},"XKX":{"type":"number"},"CYM":{"type":"number"},"MWI":{"type":"number"},"SOM":{"type":"number"},"PNG":{"type":"number"},"MDV":{"type":"number"},"MLI":{"type":"number"},"GIN":{"type":"number"},"PSE":{"type":"number"},"GAB":{"type":"number"},"LIE":{"type":"number"},"HTI":{"type":"number"},"SYR":{"type":"number"},"BRB":{"type":"number"},"YEM":{"type":"number"},"GGY":{"type":"number"},"NCL":{"type":"number"},"AND":{"type":"number"},"SUR":{"type":"number"},"MYT":{"type":"number"},"KGZ":{"type":"number"},"BHS":{"type":"number"},"GIB":{"type":"number"},"COG":{"type":"number"},"FJI":{"type":"number"},"BLM":{"type":"number"},"CUW":{"type":"number"},"CUB":{"type":"number"},"SLE":{"type":"number"},"BLZ":{"type":"number"},"NER":{"type":"number"},"LBR":{"type":"number"},"VIR":{"type":"number"},"PYF":{"type":"number"},"GUM":{"type":"number"},"MRT":{"type":"number"},"ABW":{"type":"number"},"SYC":{"type":"number"},"GUY":{"type":"number"},"LSO":{"type":"number"},"SWZ":{"type":"number"},"SSD":{"type":"number"},"LCA":{"type":"number"},"MAC":{"type":"number"},"SMR":{"type":"number"},"LAO":{"type":"number"},"BRN":{"type":"number"},"TCD":{"type":"number"},"BMU":{"type":"number"},"VGB":{"type":"number"},"PRK":{"type":"number"},"BTN":{"type":"number"},"BDI":{"type":"number"},"FRO":{"type":"number"},"TJK":{"type":"number"},"GMB":{"type":"number"},"STP":{"type":"number"},"ANT":{"type":"number"},"VCT":{"type":"number"},"DJI":{"type":"number"},"CPV":{"type":"number"},"TKM":{"type":"number"},"ATG":{"type":"number"},"TCA":{"type":"number"},"KNA":{"type":"number"},"GRD":{"type":"number"},"ASM":{"type":"number"},"VUT":{"type":"number"},"GNQ":{"type":"number"},"GRL":{"type":"number"},"SXM":{"type":"number"},"MNP":{"type":"number"},"COM":{"type":"number"},"TLS":{"type":"number"},"SJM":{"type":"number"},"CAF":{"type":"number"},"DMA":{"type":"number"},"MAF":{"type":"number"},"WSM":{"type":"number"},"BES":{"type":"number"},"MHL":{"type":"number"},"AIA":{"type":"number"},"TON":{"type":"number"},"COK":{"type":"number"},"SLB":{"type":"number"},"SPM":{"type":"number"},"GNB":{"type":"number"},"ATA":{"type":"number"},"TUV":{"type":"number"},"ALA":{"type":"number"},"IOT":{"type":"number"},"ERI":{"type":"number"},"PLW":{"type":"number"},"FSM":{"type":"number"},"NRU":{"type":"number"},"PCN":{"type":"number"},"FLK":{"type":"number"},"MSR":{"type":"number"},"VAT":{"type":"number"},"KIR":{"type":"number"},"SHN":{"type":"number"},"NIU":{"type":"number"},"WLF":{"type":"number"},"HMD":{"type":"number"},"CXR":{"type":"number"},"NFK":{"type":"number"},"ATF":{"type":"number"},"CCK":{"type":"number"},"SGS":{"type":"number"},"BVT":{"type":"number"},"UMI":{"type":"number"},"ESH":{"type":"number"},"TKL":{"type":"number"},"X-SOUTH_ASIA":{"type":"number"},"X-SOUTH_EAST_EUROPE":{"type":"number"},"X-NORTHERN_AFRICA":{"type":"number"},"X-PACIFIC":{"type":"number"},"X-SOUTH_WEST_EUROPE":{"type":"number"},"X-SOUTHERN_AFRICA":{"type":"number"},"X-WEST_INDIES":{"type":"number"},"X-SOUTH_AMERICA":{"type":"number"},"X-SOUTH_WEST_ASIA":{"type":"number"},"X-CENTRAL_EUROPE":{"type":"number"},"X-EASTERN_EUROPE":{"type":"number"},"X-WESTERN_EUROPE":{"type":"number"},"X-CENTRAL_AMERICA":{"type":"number"},"X-WESTERN_AFRICA":{"type":"number"},"X-SOUTH_ATLANTIC_OCEAN":{"type":"number"},"X-SOUTH_EAST_ASIA":{"type":"number"},"X-CENTRAL_AFRICA":{"type":"number"},"X-NORTH_AMERICA":{"type":"number"},"X-EAST_ASIA":{"type":"number"},"X-NORTHERN_EUROPE":{"type":"number"},"X-EASTERN_AFRICA":{"type":"number"},"X-SOUTHERN_INDIAN_OCEAN":{"type":"number"},"X-SOUTHERN_EUROPE":{"type":"number"},"X-CENTRAL_ASIA":{"type":"number"},"X-NORTHERN_ASIA":{"type":"number"},"X-ASIA":{"type":"number"},"X-EUROPE":{"type":"number"},"X-AFRICA":{"type":"number"},"X-OCEANIA":{"type":"number"},"X-AMERICAS":{"type":"number"},"X-ANTARCTICA":{"type":"number"},"X-ATLANTIC_OCEAN":{"type":"number"},"X-INDIAN_OCEAN":{"type":"number"},"X-MIDDLE_EAST":{"type":"number"},"X-MENA":{"type":"number"},"X-EMEA":{"type":"number"},"X-EUROPEAN_UNION":{"type":"number"},"X-EFTA":{"type":"number"},"X-APAC":{"type":"number"},"X-LATAM":{"type":"number"},"X-ANGLOSPHERE":{"type":"number"},"X-DACH":{"type":"number"},"X-NORDICS":{"type":"number"},"X-BENELUX":{"type":"number"},"X-GCC":{"type":"number"},"X-BRICS":{"type":"number"},"X-G20":{"type":"number"},"X-OECD":{"type":"number"},"X-SANCTIONED":{"type":"number"}},"additionalProperties":false},"market_cap_usd":{"type":["number","null"]},"naics_codes":{"type":["array","null"],"items":{"type":"string"}},"names":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]},"preferred_name_word_count":{"type":["integer","null"]},"revenue_estimate":{"type":["object","null"],"properties":{"sources":{"type":["array","null"],"items":{"type":"string"}},"fiscal_year":{"type":["integer","null"]},"value_usd":{"type":"object","properties":{"gte":{"type":["integer","null"]},"lte":{"type":["integer","null"]}}}},"required":["value_usd"]},"standard_industries":{"type":["array","null"],"items":{"type":"string","enum":["Administrative Services","Aerospace & Military","Artificial Intelligence","Arts & Music","Automotive","Business Services","Cloud","Construction","Consulting","Consumer Goods","Consumer Services","Design","Education","Energy","Entertainment","Environmental","Events","Farming & Agriculture","Finance","Food & Beverage","Gaming","Government","Hardware","Healthcare","Hospitality","Industrials","Information Technology","Insurance","Legal","Life Sciences","Logistics","Manufacturing","Marketing & Advertising","Media","Mining","Nonprofit","Publishing","Real Estate","Retail","Science & Engineering","Security","Software","Sports","Telecom","Trade","Transportation","Travel & Tourism","Utilities","Venture Capital"]}},"status_consensus":{"type":["string","null"]},"stock_info_consensus":{"type":["object","null"],"properties":{"ticker":{"type":["string","null"]},"exchange":{"type":["string","null"]}}},"tags":{"type":["array","null"],"items":{"type":"string","enum":["raised-from-top-vc","is-government","is-school","venture-backed-startup"]}},"total_funding_consensus":{"type":["number","null"]},"twitter_handles":{"type":["array","null"],"items":{"type":"string"}},"websites":{"type":["array","null"],"items":{"type":"string"}},"wellfound_slugs":{"type":["array","null"],"items":{"type":"string"}},"youtube_urls":{"type":["array","null"],"items":{"type":"string"}},"role_count_matches":{"type":["array","null"],"items":{"type":"object","properties":{"numMatchingEmployees":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["exact"]},"value":{"type":"number"}},"required":["type","value"]},{"type":"object","properties":{"type":{"type":"string","enum":["all"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","enum":["not-matched"]}},"required":["type"]}]}},"required":["numMatchingEmployees"]}},"num_matching_locations":{"type":["object","null"],"properties":{"num_offices_matched":{"type":"number"},"matched_offices":{"type":"array","items":{"type":"object","properties":{"address":{"type":["string","null"]},"is_primary":{"type":["boolean","null"]},"location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}}}}}},"required":["num_offices_matched","matched_offices"]},"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"last_sort_key":{"type":["string","null"]},"relevance_score":{"type":["number","null"]},"technology_spend_usd":{"type":["number","null"]},"historical_headcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"]},"cik_numbers":{"type":["array","null"],"items":{"type":"string"}},"cage_codes":{"type":["array","null"],"items":{"type":"string"}},"duns_numbers":{"type":["array","null"],"items":{"type":"string"}},"num_li_locations":{"type":["number","null"]},"location_name":{"type":["string","null"]},"crunchbase_slug":{"type":["string","null"]},"primary_role":{"type":["string","null"]},"roles":{"type":["array","null"],"items":{"type":"string"}},"short_description":{"type":["string","null"]},"long_description":{"type":["string","null"]},"is_subsidiary":{"type":["boolean","null"]},"parent":{"type":["string","null"]},"num_funding_rounds":{"type":["number","null"]},"funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}}},"num_exits":{"type":["number","null"]},"investors":{"type":["array","null"],"items":{"type":"object","properties":{"logo_url":{"type":["string","null"]},"entity_type":{"type":["string","null"]},"investor_name":{"type":["string","null"]},"linkedin_slug":{"type":["string","null"]},"investor_types":{"type":["array","null"],"items":{"type":"string"}}}}},"acquisitions":{"type":["array","null"],"items":{"type":"object","properties":{"price_usd":{"type":["number","null"]},"acquiree_name":{"type":["string","null"]},"acquisition_date":{"type":["string","null"]}}}},"best_funding_round":{"type":["object","null"],"properties":{"round_type":{"type":["string","null"],"enum":["angel","convertible_note","corporate_round","debt_financing","equity_crowdfunding","grant","initial_coin_offering","non_equity_assistance","post_ipo_debt","post_ipo_equity","post_ipo_secondary","pre_seed","private_equity","product_crowdfunding","secondary_market","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","series_unknown","undisclosed",null]},"announced_on_date":{"type":["string","null"]},"raised_amount_usd":{"type":["number","null"]},"post_money_valuation_usd":{"type":["number","null"]}}},"funding_stage":{"type":["string","null"]},"alt_industries":{"type":["array","null"],"items":{"type":"string"}},"alt_keywords":{"type":["array","null"],"items":{"type":"string"}},"alt_description":{"type":["string","null"]},"employee_trends":{"type":["array","null"],"items":{"type":"object","properties":{"functions":{"type":["string","null"],"enum":["_all_employees","information_technology","administrative","marketing","human_resources","product_management","support","education","operations","finance","media_and_commmunication","business_development","data_science","entrepreneurship","arts_and_design","sales","engineering","consulting","accounting","legal",null]},"current_count":{"type":["number","null"]},"changes":{"type":["array","null"],"items":{"type":"object","properties":{"count_end":{"type":["number","null"]},"count_start":{"type":["number","null"]},"months_back":{"type":["number","null"]},"end_of_period":{"type":["string","null"]},"numeric_change":{"type":["number","null"]},"percent_change":{"type":["number","null"]},"start_of_period":{"type":["string","null"]}}}}}}},"logo_url":{"type":["string","null"]},"similar_companies":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"employee_count":{"type":["number","null"]},"revenue":{"type":["number","null"]},"logo_url":{"type":["string","null"]}}}},"full_funding_rounds":{"type":["array","null"],"items":{"type":"object","properties":{"investors":{"type":["array","null"],"items":{"type":"object","properties":{"is_lead":{"type":["boolean","null"]},"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"investor_linkedin_url":{"type":["string","null"]},"investor_linkedin_org_id":{"type":["string","null"]}}}},"round_city":{"type":["string","null"]},"round_date":{"type":["string","null"]},"round_type":{"type":["string","null"]},"round_state":{"type":["string","null"]},"investor_count":{"type":["number","null"]},"round_raised_usd":{"type":["number","null"]},"round_country_code":{"type":["string","null"]},"round_valuation_usd":{"type":["number","null"]}}}},"funding_round_stats":{"type":["object","null"],"properties":{"round_count":{"type":["number","null"]},"total_raised_usd":{"type":["number","null"]},"peak_valuation_usd":{"type":["number","null"]},"unique_investor_count":{"type":["number","null"]},"individual_investor_stats":{"type":["array","null"],"items":{"type":"object","properties":{"investor_name":{"type":["string","null"]},"investor_type":{"type":["string","null"]},"investor_domain":{"type":["string","null"]},"investment_count":{"type":["number","null"]},"participated_round_types":{"type":["array","null"],"items":{"type":"string"}}}}},"unique_personal_investor_count":{"type":["number","null"]},"unique_organizational_investor_count":{"type":["number","null"]}}},"investment_stats":{"type":["object","null"],"properties":{"investments_by_stage":{"type":["array","null"],"items":{"type":"object","properties":{"stage":{"type":["string","null"]},"lead_rate":{"type":["number","null"]},"lead_count":{"type":["number","null"]},"total_count":{"type":["number","null"]},"share_of_portfolio":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}}},"lead_investment_rate":{"type":["number","null"]},"lead_investment_count":{"type":["number","null"]},"total_investment_count":{"type":["number","null"]},"last_investment_date":{"type":["string","null"]}}},"is_investor":{"type":["boolean","null"]},"investor_type":{"type":["string","null"]},"investor_categories":{"type":["array","null"],"items":{"type":"string"}},"technologies_used":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]}},"platforms":{"type":["object","null"],"properties":{"ecommerce":{"type":["array","null"],"items":{"type":"string"}},"cms":{"type":["array","null"],"items":{"type":"string"}},"crm":{"type":["array","null"],"items":{"type":"string"}},"marketing":{"type":["array","null"],"items":{"type":"string"}},"payment":{"type":["array","null"],"items":{"type":"string"}}}}}},"description":"Company results matching the search criteria."}},"required":["resultType","companies"]},{"type":"object","properties":{"resultType":{"type":"string","description":"Indicates people results are returned.","enum":["people"]},"people":{"type":"array","items":{"type":"object","properties":{"articles":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"date_published":{"type":["string","null"]}}}},"certifications":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"credential_id":{"type":["string","null"]},"verify_url":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"connection_count":{"type":["number","null"]},"courses":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"course_number":{"type":["string","null"]},"association":{"type":"null"}}}},"dob":{"type":["string","null"]},"education":{"type":["array","null"],"items":{"type":"object","properties":{"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"experiences":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}},"first_name":{"type":["string","null"]},"follower_count":{"type":["number","null"]},"headline":{"type":["string","null"]},"industry_name":{"type":["string","null"]},"inferred_location":{"type":["object","null"],"properties":{"street_address":{"type":["string","null"]},"neighborhood":{"type":["string","null"]},"city":{"type":["string","null"]},"state_name":{"type":["string","null"]},"state_code":{"type":["string","null"]},"county":{"type":["string","null"]},"postal_code":{"type":["string","null"]},"country_code":{"type":["string","null"]},"country_name":{"type":["string","null"]},"coordinates":{"type":["object","null"],"properties":{"lat":{"type":"number"},"lon":{"type":"number"}},"required":["lat","lon"]},"timezone":{"type":["string","null"]},"full_address":{"type":["string","null"]},"formatted_address":{"type":["string","null"]}}},"interests":{"type":["array","null"],"items":{"type":"string"}},"last_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"name":{"type":["string","null"]},"patents":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":["string","null"]},"title":{"type":["string","null"]},"country":{"type":["string","null"]},"number":{"type":["string","null"]},"description":{"type":["string","null"]},"url":{"type":["string","null"]},"date":{"type":["string","null"]}}}},"profile_pic":{"type":["string","null"]},"projects":{"type":["array","null"],"items":{"type":"object","properties":{"project_id":{"type":["string","null"]},"project_title":{"type":["string","null"]},"project_url":{"type":["string","null"]},"project_summary":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"publications":{"type":["array","null"],"items":{"type":"object","properties":{"collaborators":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"date":{"type":["string","null"]},"id":{"type":["string","null"]},"publisher":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"url":{"type":["string","null"]}}}},"skills":{"type":["array","null"],"items":{"type":"string"}},"primary_slug":{"type":"string"},"slugs":{"type":["array","null"],"items":{"type":"string"}},"summary":{"type":["string","null"]},"url":{"type":["string","null"]},"user_id":{"type":["string","null"]},"volunteering":{"type":["array","null"],"items":{"type":"object","properties":{"role":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"cause":{"type":["string","null"]},"summary":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]}}}},"tenures":{"type":["array","null"],"items":{"type":"object","properties":{"linkedin_company_id":{"type":["string","null"]},"company_name":{"type":["string","null"]},"date_range":{"type":"object","properties":{"gte":{"type":["string","null"]},"lte":{"type":["string","null"]}}},"range_length_days":{"type":["number","null"]},"titles":{"type":"array","items":{"type":"string"}},"localities":{"type":"array","items":{"type":"string"}}},"required":["date_range","titles","localities"]}},"career_began_at":{"type":["string","null"]},"tags":{"type":["array","null"],"items":{"type":"string","enum":["student","attended-top-us-university","attended-top-global-university","second-time-founder","deep-technical-background","major-tech-company-experience","fortune-500-executive","recently-changed-companies","recently-promoted","decision-maker","c-suite","experienced-executive","phd","influencer","board-member"]}},"entity_urn":{"type":["string","null"]},"open_to_work":{"type":["boolean","null"]},"premium":{"type":["boolean","null"]},"influencer":{"type":["boolean","null"]},"organizations":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"end_date":{"type":["string","null"]},"title":{"type":["string","null"]},"start_date":{"type":["string","null"]}}}},"entity_urns":{"type":["array","null"],"items":{"type":"string"}},"is_hiring":{"type":["boolean","null"]},"websites":{"type":["array","null"],"items":{"type":"string"}},"is_verified":{"type":["boolean","null"]},"verifications":{"type":["object","null"],"properties":{"is_verified":{"type":["boolean","null"]},"joined_date":{"type":["string","null"]},"verification_types":{"type":["array","null"],"items":{"type":"object","properties":{"title":{"type":["string","null"]},"subtitle":{"type":["string","null"]},"description":{"type":["string","null"]}}}}}},"current_job":{"type":["object","null"],"properties":{"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}},"custom_data":{"type":["object","null"],"additionalProperties":{"type":"string"}},"relevance_score":{"type":["number","null"]},"last_sort_key":{"type":["string","null"]},"languages":{"type":["array","null"],"items":{"type":"object","properties":{"name":{"type":["string","null"]},"proficiency_id":{"type":["string","null"]},"proficiency_name":{"type":["string","null"]}}}},"detailed_education":{"type":["array","null"],"items":{"type":"object","properties":{"school_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"school_id":{"type":["string","null"]},"school_name":{"type":["string","null"]},"field_of_study_id":{"type":["string","null"]},"field_of_study_name":{"type":["string","null"]},"degree":{"type":["string","null"]},"grade":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"activities":{"type":["string","null"]},"notes":{"type":["string","null"]}}}},"detailed_work_experiences":{"type":["array","null"],"items":{"type":"object","properties":{"company_details":{"type":["object","null"],"properties":{"linkedin_ids":{"type":["array","null"],"items":{"type":"string"}},"li_org_id":{"type":["string","null"]},"linkedin_primary_slug":{"type":["string","null"]},"domains":{"type":["array","null"],"items":{"type":"string"}},"preferred_name":{"type":["string","null"]}}},"crunchbase_slug":{"type":["string","null"]},"linkedin_company_id":{"type":["string","null"]},"is_current":{"type":["boolean","null"]},"company_name":{"type":["string","null"]},"locality":{"type":["string","null"]},"start_date":{"type":["string","null"]},"end_date":{"type":["string","null"]},"summary":{"type":["string","null"]},"title":{"type":["string","null"]},"seniority":{"type":["string","null"],"enum":["Entry level","Director","Associate","Mid-Senior level","Internship","Executive",null]},"job_function":{"type":["array","null"],"items":{"type":"string","enum":["Arts and Design","Business Development","Community & Social Services","Consulting","Education","Engineering","Entrepreneurship","Healthcare Services","Human Resources","Information Technology","Legal","Military & Protective Services","Operations","Program & Product Management","Real Estate","Sales","Support","Administrative","Finance","Marketing","Purchasing","Product Management","Advertising","Analyst","Customer Service","Distribution","Design","General Business","Management","Manufacturing","Other","Public Relations","Project Management","Production","Quality Assurance","Research","Science","Supply Chain","Training","Health Care Provider","Accounting","Art / Creative","Strategy / Planning","Writing / Editing"]}},"employment_type":{"type":["array","null"],"items":{"type":"string","enum":["Full-time","Temporary","Internship","Contract","Part-time","Volunteer","Other"]}},"academic_qualification":{"type":["array","null"],"items":{"type":"string","enum":["High School","Associate Degree","Bachelor Degree"]}},"company_start_date":{"type":["string","null"]},"company_end_date":{"type":["string","null"]}}}}},"required":["primary_slug"]},"description":"People results matching the search criteria."}},"required":["resultType","people"]}],"description":"Search results. Discriminated on resultType — either companies or people are returned, never both."}},"required":["searchId","results"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/local-business-search/start":{"post":{"operationId":"startLocalBusinessSearch","summary":"Start Local business AI search","tags":["AI research"],"description":"Use our AI agent to search for local businesses and grab contact details. Results are polled asynchronously via the returned researchRunId. Max 500 companies per request. Estimated completion: 1800 seconds.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 4 credits per company&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companies":{"type":"array","items":{"type":"object","properties":{"companyName":{"type":"string","description":"The name of the company to search for."},"companyWebsite":{"type":["string","null"],"description":"The website URL of the company."},"companyCity":{"type":["string","null"],"description":"The city where the company is located."},"companyState":{"type":["string","null"],"description":"The state where the company is located."},"companyCountryName":{"type":["string","null"],"description":"The country of the company."},"companyCountryCode":{"type":["string","null"],"description":"The ISO 3166-1 alpha-2 country code."},"companyAddress":{"type":["string","null"],"description":"The address of the company."},"context":{"type":["string","null"],"description":"Additional context about the company. Helps distinguish between companies with similar names."}},"required":["companyName"]},"description":"The companies to search for."},"jobTitles":{"type":["array","null"],"items":{"type":"string","minLength":1,"maxLength":50},"maxItems":6,"description":"Job titles to search for at each company (e.g. ['CEO', 'Owner']). Omit or null to skip person search."},"strictJobTitleMatch":{"type":"boolean","default":false,"description":"If true, only match the same role with different wording (e.g. CEO = Chief Executive Officer). Rejects different roles even if senior/similar (e.g. CEO ≠ Chairman)."},"contactPreferences":{"type":"object","properties":{"companyEmails":{"type":"boolean","default":true,"description":"Fetch emails found on the company website"},"companyPhones":{"type":"boolean","default":true,"description":"Fetch phone numbers found on the company website"},"personEmails":{"type":"boolean","default":true,"description":"Fetch work/personal emails of people found via job title search"},"personPhones":{"type":"boolean","default":true,"description":"Fetch phone numbers of people found via job title search"}},"default":{},"description":"Controls which contact data to fetch for all companies in this payload."}},"required":["apiKey","companies"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"4 credits per company","variableCosts":[{"credits":4,"perUnit":"company","operation":"localBusinessResearchAgent"}],"chargingMethod":"charged-for-async-process"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"researchRunId":{"type":"string","description":"Run ID for the local business agent run. Use this ID to poll the result of the run."}},"required":["researchRunId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/domain-lookup/trigger":{"post":{"operationId":"domainLookupTrigger","summary":"Start Domain lookup","tags":["AI research"],"description":"Use our AI agent to find a company's domain and email domains using a variety of parameters such as company name, country, state, city, address, other context, and description. NOTE: Maximum 400 companies can be provided at a time. Estimated time to complete 150 companies is an hour.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per company&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"overAllContext":{"type":"string","description":"A descriptor of what the companies have in common (e.g. \"British freight brokers\" or \"YC startups\"). Helps disambiguate companies with similar names."},"companyInfo":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"The name of the company."},"domain":{"type":["string","null"],"description":"The domain of the company if already known (e.g. 'example.com'). If provided and findEmailDomains is true, the agent will skip domain search and only find email domains. Else if not provided, the agent will search for the domain."},"country":{"type":["string","null"],"description":"The country where the company is based. Provide full country name (e.g. United Kingdom) or ISO 3166-1 alpha-3 code (e.g. GBR)"},"state":{"type":["string","null"],"description":"The state where the company is based. Provide full state name (e.g. California) or code (e.g. CA)."},"city":{"type":["string","null"],"description":"The city where the company is located."},"address":{"type":["string","null"],"description":"The street address of the company."},"findEmailDomains":{"type":"boolean","default":false,"description":"Whether to find the email domains of the company."},"otherContext":{"type":["string","null"],"description":"Any other disambiguating information or identifiers for the company, such as \"YC startup\" or \"Italian airline\""},"description":{"type":["string","null"],"description":"A description of the company, such as what it does or its industry focus."}},"required":["name"]},"minItems":1,"maxItems":400,"description":"List of companies to look up. Max 400 companies can be provided at a time."}},"required":["apiKey","overAllContext","companyInfo"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per company","variableCosts":[{"credits":3,"perUnit":"company","operation":"domainLookupAgent"}],"chargingMethod":"charged-for-async-process"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"domainAgentRunId":{"type":"string","description":"The ID of the domain agent run. Provide this to the polling endpoint to get the actual results back."}},"required":["domainAgentRunId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/multi-source/search":{"post":{"operationId":"multiSourceSearch","summary":"Multi-source AI search","tags":["Agentic search"],"description":"AI-powered natural language search across multiple sources (LinkedIn, Google Maps, web, and more). Ideal for local business search where companies/employees have spotty web or LinkedIn presence.\n\n**Pagination flow:**\n\n1. **First page** — send `{ search: { request: \"initial\", query: \"...\", pageSize: 10 } }`. The `pageSize` you choose here is locked for the entire session.\n2. **Subsequent pages** — send `{ search: { request: \"subsequent\", cursor: \"<nextCursor>\" } }`.\n3. When `nextCursor` is `null` in the response, there are no more results.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Credits are charged after the search completes based on results: 2 credits per company found and 2 credits per prospect found. Each query resolves to either companies or prospects, so only one rate applies per page.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Your total charge depends on the number of results returned and which entity type the query resolves to.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"search":{"oneOf":[{"type":"object","properties":{"request":{"type":"string","description":"Use \"initial\" for the first page of a new search. Provide query, pageSize, and any filters.","enum":["initial"]},"query":{"type":"string","maxLength":2000,"description":"Natural language search query, e.g. \"pizza shops in NYC\" or \"Series A SaaS founders in London\". The API infers whether to return companies or people."},"pageSize":{"type":"integer","minimum":1,"maximum":1000,"default":10,"description":"Number of results per page (default 10, max 1000). This value is locked for the entire pagination session."},"companyFilters":{"type":["object","null"],"properties":{"country_codes":{"type":["array","null"],"items":{"type":"string","minLength":3,"maxLength":3},"description":"ISO 3166-1 alpha-3 country codes (e.g. USA, GBR)."},"min_relevance":{"type":["number","null"],"minimum":0,"maximum":1,"description":"Minimum relevance score (0.0–1.0). Higher values mean a closer match to your query."},"funding_stages":{"type":["array","null"],"items":{"type":"string","enum":["no_funding_yet","pre_seed","seed","series_a","series_b","series_c","series_d","series_e","series_f","series_g","series_h","series_i","series_j","venture_other","private_equity"]},"description":"Last funding round stage filter. Acquired, public, closed, and unknown stages are not supported."},"employee_growth":{"type":["array","null"],"items":{"type":"string","enum":["high","growing","stable","declining"]},"description":"Year-over-year employee growth trend. Elements are OR-ed together."},"website_traffic":{"type":["array","null"],"items":{"type":"string","enum":["<1K","1K-10K","10K-100K","100K-1M","1M+","unknown"]},"description":"Monthly website traffic bucket filter. Elements are OR-ed together."},"employee_count":{"type":["object","null"],"properties":{"min":{"type":["integer","null"],"minimum":0},"max":{"type":["integer","null"],"minimum":0}},"description":"Filter by number of employees (inclusive range)."},"founded_year":{"type":["object","null"],"properties":{"min":{"type":["integer","null"],"minimum":0},"max":{"type":["integer","null"],"minimum":0}},"description":"Filter by company founding year (inclusive range)."},"revenue":{"type":["object","null"],"properties":{"min":{"type":["number","null"],"minimum":0},"max":{"type":["number","null"],"minimum":0}},"description":"Annual revenue in USD (inclusive range)."},"is_b2b":{"type":["boolean","null"],"description":"If `true`, include only B2B companies. If `false`, exclude B2B companies."},"is_tech":{"type":["boolean","null"],"description":"If `true`, include only tech companies. If `false`, exclude tech companies."},"is_saas":{"type":["boolean","null"],"description":"If `true`, include only SaaS companies. If `false`, exclude SaaS companies."},"is_startup":{"type":["boolean","null"],"description":"If `true`, include only startup-stage companies. If `false`, exclude startups."},"website_traffic_growth":{"type":["array","null"],"items":{"type":"string","enum":["high","growing","stable","declining","unknown"]},"description":"Year-over-year website traffic growth trend. Elements are OR-ed together."},"has_linkedin_page":{"type":["boolean","null"],"description":"If `true`, include only companies with a LinkedIn page. If `false`, exclude them."},"has_employees_on_linkedin":{"type":["boolean","null"],"description":"If `true`, include only companies that have employees listed on LinkedIn. If `false`, exclude them."},"has_public_emails":{"type":["boolean","null"],"description":"If `true`, include only companies with public contact emails. If `false`, exclude them."},"has_company_phone":{"type":["boolean","null"],"description":"If `true`, include only companies with a phone number. If `false`, exclude them."},"hiring_is":{"type":["boolean","null"],"description":"If `true`, include only companies that are currently hiring. If `false`, exclude them."},"is_ai":{"type":["boolean","null"],"description":"If `true`, include only AI-related companies. If `false`, exclude them."}},"description":"Optional filters applied on top of the AI-derived company filters (e.g. country, funding stage, employee count, etc)."},"peopleFilters":{"type":["object","null"],"properties":{"country_codes":{"type":["array","null"],"items":{"type":"string","minLength":3,"maxLength":3},"description":"ISO 3166-1 alpha-3 country codes (e.g. USA, GBR)."},"min_relevance":{"type":["number","null"],"minimum":0,"maximum":1,"description":"Minimum relevance score (0.0–1.0). Higher values mean a closer job-title match."},"job_titles":{"type":["object","null"],"properties":{"include":{"type":["array","null"],"items":{"type":"string"},"minItems":1,"maxItems":20,"description":"Job titles to search for. Abbreviations are supported (e.g. 'CTO'). Elements are OR-ed together."},"exclude":{"type":["array","null"],"items":{"type":"string"},"minItems":1,"description":"Job title keywords to exclude from results."}}},"max_people_per_company":{"type":["integer","null"],"minimum":1,"maximum":1000,"description":"Maximum number of people to return per matched company."},"company_linkedin_ids":{"type":["array","null"],"items":{"type":"string","pattern":"^\\d+$"},"description":"Restrict results to people from these companies. Provide the numeric LinkedIn company IDs returned by Fiber's company search endpoints."}},"description":"Optional filters applied on top of the AI-derived people filters (e.g. job titles, country, max people per company). Only used when the query resolves to a people search."}},"required":["request","query"]},{"type":"object","properties":{"request":{"type":"string","description":"Use \"subsequent\" for page 2 and beyond. Only the cursor from the previous response is required; all other parameters are stored server-side.","enum":["subsequent"]},"cursor":{"type":"string","description":"The `nextCursor` value returned by the previous response. Valid for 3 days."}},"required":["request","cursor"]}]}},"required":["apiKey","search"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"Credits are charged after the search completes based on results: 2 credits per company found and 2 credits per prospect found. Each query resolves to either companies or prospects, so only one rate applies per page.","variableCosts":[{"credits":2,"perUnit":"company found","operation":"multiSourceCompanySearch"},{"credits":2,"perUnit":"prospect found","operation":"multiSourcePersonSearch"}],"comment":"Your total charge depends on the number of results returned and which entity type the query resolves to.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"data":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["companies"]},"results":{"type":"array","items":{"type":"object","properties":{"name":{"type":["string","null"],"description":"Company name"},"domain":{"type":["string","null"],"description":"Company domain"},"websiteUrl":{"type":["string","null"],"description":"Company website URL"},"linkedinUrl":{"type":["string","null"],"description":"LinkedIn company page URL using the numeric company ID (e.g. https://linkedin.com/company/1234). Null if unavailable."},"industry":{"type":["string","null"],"description":"Primary industry. The value comes from the data provider and may vary in format."},"employeeCount":{"type":["integer","null"],"description":"Estimated employee count"},"city":{"type":["string","null"],"description":"Company city"},"countryCode":{"type":["string","null"],"description":"Company country (ISO alpha-3 code, e.g. USA)"},"foundedYear":{"type":["integer","null"],"description":"Year the company was founded"},"description":{"type":["string","null"],"description":"Company description"}}},"description":"Matched companies"}},"required":["type","results"]},{"type":"object","properties":{"type":{"type":"string","enum":["prospects"]},"results":{"type":"array","items":{"type":"object","properties":{"firstName":{"type":["string","null"],"description":"First name"},"lastName":{"type":["string","null"],"description":"Last name"},"jobTitle":{"type":["string","null"],"description":"Job title"},"headline":{"type":["string","null"],"description":"LinkedIn headline"},"linkedinUrl":{"type":["string","null"],"description":"LinkedIn profile URL"},"countryCode":{"type":["string","null"],"description":"Person's country (ISO alpha-3 code, e.g. USA)"},"companyName":{"type":["string","null"],"description":"The person's current company name"},"companyDomain":{"type":["string","null"],"description":"The person's current company domain"},"companyLinkedinUrl":{"type":["string","null"],"description":"The person's current company LinkedIn URL"},"companyCity":{"type":["string","null"],"description":"The person's current company city"},"companyCountryCode":{"type":["string","null"],"description":"The person's current company headquarters country (ISO alpha-3 code, e.g. USA)"}}},"description":"Matched prospects with company info"}},"required":["type","results"]}],"description":"Search results — either companies or prospects, never both"},"message":{"type":"string"},"nextCursor":{"type":["string","null"],"description":"Cursor for the next page. Pass this as `cursor` in a `{ request: \"subsequent\", cursor: \"...\" }` request. `null` means there are no more results. Cursors expire after 3 days."}},"required":["data","message"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/build":{"post":{"operationId":"buildAudience","summary":"Build audience from search parameters","tags":["Audiences"],"description":"Triggers the audience building process. This runs a company and prospect search based on the configured search parameters and saves results to the database. The build runs asynchronously - use the get-audience-status endpoint to poll for completion. Status transitions: DRAFT → BUILDING → NORMAL (success) or FAILED (error).\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Credits are charged after the build completes based on results: 1 credits per company and 1 credits per profile found.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Your total charge will vary based on the number of companies and profiles in your audience.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"}},"required":["apiKey"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"Credits are charged after the build completes based on results: 1 credits per company and 1 credits per profile found.","variableCosts":[{"credits":1,"perUnit":"company found","operation":"getCompanyFromDb"},{"credits":1,"perUnit":"profile found","operation":"getPersonFromDb"}],"comment":"Your total charge will vary based on the number of companies and profiles in your audience.","chargingMethod":"charging-later"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"audienceId":{"type":"string","description":"The unique ID of the audience."},"status":{"type":"string","description":"The status indicating the build has started.","enum":["BUILDING"]},"message":{"type":"string","description":"A human-readable message about the build status."}},"required":["audienceId","status","message"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/audiences/{audienceId}/enrich":{"post":{"operationId":"triggerEnrichment","summary":"Trigger audience enrichment","tags":["Audiences"],"description":"Triggers the audience enrichment process. This runs company and prospect enrichment (live data, Sales Navigator, contact details) based on the configured enrichment types. The enrichment runs asynchronously - use the get-enrichment-status endpoint to poll for completion. Credits are charged immediately based on the estimated cost.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> Credits are charged immediately: 2 per work email, 2 per personal email, 3 per phone number, 1 per prospect live enrichment.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary. Your total charge will vary based on the enrichment types selected and number of prospects.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"maxProspectsToEnrich":{"type":"integer","exclusiveMinimum":0,"description":"Maximum number of prospects to enrich for this run (must be a positive integer; very large values may be rejected by internal safety limits)."},"enrichmentType":{"type":"object","properties":{"getWorkEmails":{"type":"boolean","default":true},"getPersonalEmails":{"type":"boolean","default":true},"getPhoneNumbers":{"type":"boolean","default":true}},"description":"Enrichment types to request. Credits are charged only for selected types."},"runCompanyLiveEnrichment":{"type":"boolean","default":true,"description":"Whether to run live enrichment for companies"},"runProfileLiveEnrichment":{"type":"boolean","default":true,"description":"Whether to run live enrichment for profiles"},"runProfileSalesNav":{"type":"boolean","default":true,"description":"Whether to run Sales Navigator profile enrichment"},"runContactEnrichment":{"type":"boolean","default":true,"description":"Whether to run contact enrichment (emails/phones)"},"userEmail":{"type":["string","null"],"format":"email","description":"Optional email address to receive completion notifications. If not provided, no email will be sent."}},"required":["apiKey","maxProspectsToEnrich","enrichmentType"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"audienceId","required":true,"description":"The unique ID of the audience."}],"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"Credits are charged immediately: 2 per work email, 2 per personal email, 3 per phone number, 1 per prospect live enrichment.","variableCosts":[{"credits":2,"perUnit":"work email revealed","operation":"workEmailReveal"},{"credits":2,"perUnit":"personal email revealed","operation":"personalEmailReveal"},{"credits":3,"perUnit":"phone number revealed","operation":"phoneReveal"},{"credits":1,"perUnit":"prospect live enriched","operation":"liveEnrichPersonForContactReveal"}],"comment":"Your total charge will vary based on the enrichment types selected and number of prospects.","chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"enrichmentId":{"type":"string","description":"The unique ID of the enrichment run."},"status":{"type":"string","description":"The initial status of the enrichment run.","enum":["NOT_STARTED"]},"estimatedCredits":{"type":"number","description":"The estimated credits that will be charged for this enrichment."}},"required":["enrichmentId","status","estimatedCredits"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/github-lookup/trigger":{"post":{"operationId":"githubLookupTrigger","summary":"Start GitHub lookup","tags":["GitHub"],"description":"Use our AI agent to find GitHub profiles for a list of people using name and optional context like LinkedIn URL, work email, company, and job title.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per person&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"overallContext":{"type":"string","description":"A descriptor of what the people have in common (e.g. \"Engineers at Fiber AI\" or \"YC founders 2021 batch\"). Helps disambiguate people with similar names."},"people":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"externalId":{"type":["string","null"],"description":"An external ID for joining results back to the original dataset."},"inputType":{"type":"string","enum":["linkedinUrl"]},"linkedinUrl":{"type":"string","description":"LinkedIn URL, slug, or entity URN"}},"required":["inputType","linkedinUrl"]},{"type":"object","properties":{"externalId":{"type":["string","null"],"description":"An external ID for joining results back to the original dataset."},"inputType":{"type":"string","enum":["linkedinUserId"]},"linkedinUserId":{"type":"string","description":"LinkedIn numeric user ID"}},"required":["inputType","linkedinUserId"]},{"type":"object","properties":{"externalId":{"type":["string","null"],"description":"An external ID for joining results back to the original dataset."},"inputType":{"type":"string","enum":["manual"]},"fullName":{"type":"string","maxLength":256,"description":"The full name of the person whose GitHub profile you want to find."},"company":{"type":["string","null"]},"jobTitle":{"type":["string","null"]},"schoolName":{"type":["string","null"],"description":"School or university name"},"workEmail":{"type":["string","null"],"format":"email"},"linkedinUrl":{"type":["string","null"],"format":"uri"}},"required":["inputType","fullName"]}]},"minItems":1,"maxItems":1000,"description":"List of people to look up. Maximum 1000 people can be provided at a time."}},"required":["apiKey","overallContext","people"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per person","variableCosts":[{"credits":3,"perUnit":"person","operation":"githubLookupAgent"}],"chargingMethod":"charged-for-async-process"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"githubAgentRunId":{"type":"string","description":"The ID of the GitHub lookup agent run. Provide this to the polling endpoint to get the actual results back."}},"required":["githubAgentRunId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/github-to-linkedin/trigger":{"post":{"operationId":"githubToLinkedInTrigger","summary":"Start GitHub to LinkedIn lookup","tags":["GitHub"],"description":"Convert GitHub usernames to LinkedIn profiles or get emailIds. Use outputType flag to specify what to retrieve.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per person for LinkedIn lookup OR email extraction. 2 credits per person if outputType='both'.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"overallContext":{"type":["string","null"],"description":"A descriptor of what the people have in common (e.g. \"Engineers at Fiber AI\" or \"YC founders 2021 batch\"). Helps disambiguate people with similar names."},"people":{"type":"array","items":{"type":"object","properties":{"githubUsername":{"type":"string","minLength":1},"customerProvidedId":{"type":["string","null"]}},"required":["githubUsername"]},"minItems":1,"maxItems":1000,"description":"List of GitHub usernames to look up. Maximum 1000 people can be provided at a time."},"outputType":{"type":"string","enum":["linkedin","email","both"],"default":"linkedin","description":"What to extract from GitHub profile. 'linkedin' finds LinkedIn profile, 'email' extracts work emails from commits, 'both' returns both."}},"required":["apiKey","people"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per person for LinkedIn lookup OR email extraction. 2 credits per person if outputType='both'.","variableCosts":[{"credits":5,"perUnit":"person (LinkedIn lookup)","operation":"getLiProfileFromGithubUsername"},{"credits":3,"perUnit":"person (email extraction)","operation":"getEmailFromGithubUsername"}],"chargingMethod":"charged-for-async-process"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"githubAgentRunId":{"type":"string","description":"The ID of the GitHub to LinkedIn lookup run. Provide this to the polling endpoint to get actual results back."}},"required":["githubAgentRunId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/github-to-linkedin/single":{"post":{"operationId":"githubToLinkedinSingle","summary":"Find person by GitHub username (single)","tags":["GitHub"],"description":"Given a GitHub username, find the person's LinkedIn profile and extract work emails.\nUse `outputType` to control what data is returned and charged for.\nFor outputType=linkedin we only return LinkedIn fields, for outputType=email we only return emails, for outputType=both we return both.\nTo avoid 429 errors, spread requests evenly instead of sending a burst.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 5 credits per person (LinkedIn lookup) + 3 credits per person (email extraction)&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 2 minutes&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 2 minutes for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"githubUsername":{"type":"string","minLength":1,"description":"The GitHub username to look up."},"context":{"type":["string","null"],"minLength":1,"maxLength":1000,"description":"Optional descriptor of who this person is (e.g. \"Engineer at Fiber AI\" or \"YC founder 2021 batch\"). Improves disambiguation on common names. Max 1000 characters."},"outputType":{"type":"string","enum":["linkedin","email","both"],"default":"both","description":"What to extract from GitHub profile. 'linkedin' finds LinkedIn profile, 'email' extracts work emails from commits, 'both' returns both."},"customerProvidedId":{"type":["string","null"],"minLength":1,"description":"Optional customer-provided ID to tie results back to original input."}},"required":["apiKey","githubUsername"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"5 credits per person (LinkedIn lookup) + 3 credits per person (email extraction)","variableCosts":[{"credits":5,"perUnit":"person (LinkedIn lookup)","operation":"getLiProfileFromGithubUsername"},{"credits":3,"perUnit":"person (email extraction)","operation":"getEmailFromGithubUsername"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":120,"displayText":"2 minutes"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"githubUsername":{"type":"string","description":"The GitHub username that was resolved."},"customerProvidedId":{"type":["string","null"],"description":"Echoes the optional customer-provided ID from the request."},"linkedInUrl":{"type":["string","null"],"format":"uri","description":"Resolved LinkedIn profile URL when available."},"linkedInSlug":{"type":["string","null"],"description":"Resolved LinkedIn profile slug when available."},"confidenceOutOf10":{"type":"integer","minimum":0,"maximum":10,"description":"Confidence score (0-10) for this resolution."},"rationale":{"type":["string","null"],"description":"Optional explanation for the selected match."},"extractedEmails":{"type":"array","items":{"type":"string"},"default":[],"description":"Extracted work email addresses from GitHub commits/cache."},"githubProfile":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"company":{"type":["string","null"]},"location":{"type":["string","null"]},"bio":{"type":["string","null"]},"blog":{"type":["string","null"]},"avatarUrl":{"type":["string","null"]},"followers":{"type":["integer","null"]},"publicRepos":{"type":["integer","null"]}},"description":"Basic GitHub profile fields used by the resolver."}},"required":["githubUsername","confidenceOutOf10","extractedEmails"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/social-media-lookup/trigger":{"post":{"operationId":"socialMediaLookupTrigger","summary":"Start social media lookup","tags":["Social media"],"description":"Use our AI agent to find social media profiles (Twitter, Instagram) for a person using name and optional context like LinkedIn URL, work email, company, and job title.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 3 credits per platform searched&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"overallContext":{"type":["string","null"],"minLength":1,"maxLength":1000,"description":"Optional context about the person to help disambiguation (e.g. \"AI researcher at OpenAI\"). Useful for common names. Max 1000 characters."},"platforms":{"type":"array","items":{"type":"string","enum":["TWITTER","INSTAGRAM"]},"minItems":1,"default":["TWITTER"],"description":"Which social media platforms to search. Defaults to Twitter. Supported: TWITTER, INSTAGRAM."},"person":{"oneOf":[{"type":"object","properties":{"customerProvidedId":{"type":["string","null"],"description":"Your external ID for this person, echoed back in the response for joining results to your dataset."},"inputType":{"type":"string","enum":["linkedinUrl"]},"linkedinUrl":{"type":"string","minLength":1,"description":"LinkedIn profile URL, slug, or entity URN (e.g. https://www.linkedin.com/in/karpathy or just 'karpathy')."}},"required":["inputType","linkedinUrl"]},{"type":"object","properties":{"customerProvidedId":{"type":["string","null"],"description":"Your external ID for this person, echoed back in the response for joining results to your dataset."},"inputType":{"type":"string","enum":["linkedinUserId"]},"linkedinUserId":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric user ID for this person."}},"required":["inputType","linkedinUserId"]},{"type":"object","properties":{"customerProvidedId":{"type":["string","null"],"description":"Your external ID for this person, echoed back in the response for joining results to your dataset."},"inputType":{"type":"string","enum":["manual"]},"fullName":{"type":"string","minLength":1,"maxLength":256,"description":"The full name of the person to look up."},"company":{"type":["string","null"],"minLength":1,"description":"Current company, used to disambiguate common names."},"jobTitle":{"type":["string","null"],"minLength":1,"description":"Current job title."},"workEmail":{"type":["string","null"],"format":"email","description":"Work email address."},"linkedinUrl":{"type":["string","null"],"format":"uri","description":"LinkedIn profile URL for additional context (e.g. https://www.linkedin.com/in/karpathy)."}},"required":["inputType","fullName"]}],"description":"The person to look up."}},"required":["apiKey","person"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"3 credits per platform searched","variableCosts":[{"credits":3,"perUnit":"platform searched","operation":"socialMediaFinderAgent"}],"chargingMethod":"charged-for-async-process"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"socialMediaFinderRunId":{"type":"string","description":"The ID of the social media finder run. Provide this to the polling endpoint to get results."}},"required":["socialMediaFinderRunId"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/youtube/transcript":{"post":{"operationId":"youtubeTranscript","summary":"Fetch YouTube video transcript","tags":["YouTube"],"description":"Fetches the timestamped transcript for a YouTube video. Returns all transcript segments and the list of languages available. Provide a full YouTube URL or a bare 11-character video ID.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"videoId":{"type":"string","minLength":1,"description":"YouTube video ID or full URL. Accepts a bare 11-character ID (e.g. '094y1Z2wpJg') or a full YouTube URL (e.g. 'https://www.youtube.com/watch?v=094y1Z2wpJg')."},"languageCode":{"type":["string","null"],"pattern":"^[a-z]{2,3}(-[A-Za-z]{2,4})?$","description":"Transcript BCP-47 language code (e.g. 'en' for English, 'es' for Spanish, 'fr' for French, 'pt-BR' for Brazilian Portuguese). Omit to receive the default language transcript."}},"required":["apiKey","videoId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"youtubeVideoTranscript"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"segments":{"type":["array","null"],"items":{"type":"object","properties":{"text":{"type":"string","description":"The transcript text for this segment."},"startSeconds":{"type":"number","description":"Start time of the segment in seconds."},"durationSeconds":{"type":"number","description":"Duration of the segment in seconds."}},"required":["text","startSeconds","durationSeconds"]},"description":"Ordered list of transcript segments with timestamps."},"availableLanguages":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"BCP-47 language code (e.g. 'en' or 'pt-BR')."},"name":{"type":"string","description":"Human-readable language name (e.g. 'English' or 'Portuguese (Brazil)')."}},"required":["code","name"]},"description":"All languages for which a transcript is available for this video."}},"required":["segments","availableLanguages"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/youtube/video-details":{"post":{"operationId":"youtubeVideoDetails","summary":"Fetch YouTube video details","tags":["YouTube"],"description":"Fetches detailed metadata for a YouTube video including title, view count, like count, channel information, chapters, key moments, and available transcript languages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"videoId":{"type":"string","minLength":1,"description":"YouTube video ID or full URL. Accepts a bare 11-character ID (e.g. '094y1Z2wpJg') or a full YouTube URL (e.g. 'https://www.youtube.com/watch?v=094y1Z2wpJg')."}},"required":["apiKey","videoId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"youtubeVideoDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"YouTube video ID — the unique identifier found in the URL. For example, in 'https://www.youtube.com/watch?v=094y1Z2wpJg', the video ID is '094y1Z2wpJg'."},"title":{"type":"string","description":"Video title."},"viewCount":{"type":["number","null"],"description":"Number of views."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"author":{"type":["string","null"],"description":"Video uploader name."},"category":{"type":["string","null"],"description":"Video category."},"publishedAt":{"type":["object","null"],"properties":{"date":{"type":"string","description":"ISO 8601 date string (e.g. '2024-03-15T00:00:00.000Z')."},"estimated":{"type":"boolean","description":"True when the date was estimated from an approximate time string (e.g. '2 years ago'). False when an exact date was available."}},"required":["date","estimated"],"description":"Publication date. When YouTube only provides approximate time (e.g. '2 years ago'), we estimate the date and set `estimated: true`."},"description":{"type":["string","null"],"description":"Video description."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"channel":{"type":["object","null"],"properties":{"id":{"type":["string","null"],"description":"YouTube channel ID."},"name":{"type":["string","null"],"description":"Channel display name."},"url":{"type":["string","null"],"description":"URL to the channel page."},"subscriberCount":{"type":["number","null"],"description":"Number of subscribers."}},"description":"Channel information."},"commentCount":{"type":["number","null"],"description":"Total number of comments."},"chapters":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","description":"Chapter title."},"startSeconds":{"type":"number","description":"Start time of the chapter in seconds."}},"required":["title","startSeconds"]},"description":"Author-defined chapters with timestamps. These are manually set by the video creator in the description."},"keyMoments":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string","description":"Key moment title."},"startSeconds":{"type":"number","description":"Start time in seconds."}},"required":["title","startSeconds"]},"description":"Auto-generated key moments identified by YouTube's algorithms. These are distinct from author-defined chapters."},"availableTranscriptLanguages":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"BCP-47 language code (e.g. 'en' or 'pt-BR')."},"name":{"type":"string","description":"Human-readable language name (e.g. 'English' or 'Portuguese (Brazil)')."}},"required":["code","name"]},"description":"Languages for which transcripts are available."}},"required":["id","title","chapters","keyMoments","availableTranscriptLanguages"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/youtube/video-comments":{"post":{"operationId":"youtubeVideoComments","summary":"Fetch YouTube video comments","tags":["YouTube"],"description":"Fetches a page of comments for a YouTube video. Returns comment text, author, like count, and reply count. Use `nextPageToken` from the response to paginate through additional pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"videoId":{"type":"string","minLength":1,"description":"YouTube video ID or full URL. Accepts a bare 11-character ID (e.g. '094y1Z2wpJg') or a full YouTube URL (e.g. 'https://www.youtube.com/watch?v=094y1Z2wpJg')."},"nextPageToken":{"type":["string","null"],"description":"Pagination token from a previous response to retrieve the next page of comments. Omit for the first page."}},"required":["apiKey","videoId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"youtubeVideoComments"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"comments":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique identifier for this comment."},"text":{"type":["string","null"],"description":"Comment text."},"likeCount":{"type":["number","null"],"description":"Number of likes on this comment."},"author":{"type":["string","null"],"description":"Comment author display name."},"publishedAt":{"type":["object","null"],"properties":{"date":{"type":"string","description":"ISO 8601 date string (e.g. '2024-03-15T00:00:00.000Z')."},"estimated":{"type":"boolean","description":"True when the date was estimated from an approximate time string (e.g. '2 years ago'). False when an exact date was available."}},"required":["date","estimated"],"description":"Publication date. When YouTube only provides approximate time (e.g. '2 years ago'), we estimate the date and set `estimated: true`."},"replyCount":{"type":["number","null"],"description":"Number of replies to this comment."}}},"description":"List of comments for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page of comments. Pass this as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["comments"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/youtube/search":{"post":{"operationId":"youtubeSearch","summary":"Search YouTube videos","tags":["YouTube"],"description":"Searches YouTube for videos matching a query. Returns video titles, links, channel information, view counts, and durations.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"The search query string to find YouTube videos (e.g. 'React Hooks tutorial')."},"nextPageToken":{"type":["string","null"],"description":"Pagination token from a previous response to retrieve the next page of search results. Omit for the first page."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"youtubeSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"YouTube video ID — the unique identifier found in the URL. For example, in 'https://www.youtube.com/watch?v=094y1Z2wpJg', the video ID is '094y1Z2wpJg'."},"title":{"type":"string","description":"Video title."},"url":{"type":["string","null"],"description":"URL to the video."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"publishedAt":{"type":["object","null"],"properties":{"date":{"type":"string","description":"ISO 8601 date string (e.g. '2024-03-15T00:00:00.000Z')."},"estimated":{"type":"boolean","description":"True when the date was estimated from an approximate time string (e.g. '2 years ago'). False when an exact date was available."}},"required":["date","estimated"],"description":"Publication date. When YouTube only provides approximate time (e.g. '2 years ago'), we estimate the date and set `estimated: true`."},"channel":{"type":["object","null"],"properties":{"id":{"type":["string","null"],"description":"YouTube channel ID."},"name":{"type":["string","null"],"description":"Channel display name."},"url":{"type":["string","null"],"description":"URL to the channel page."},"verified":{"type":["boolean","null"],"description":"Whether the channel is verified."}},"description":"Channel information."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."}},"required":["id","title"]},"description":"List of video search results."},"shorts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"YouTube video ID for this short — the unique identifier found in the URL. For example, in 'https://www.youtube.com/shorts/gGtuw7Rejtk', the video ID is 'gGtuw7Rejtk'."},"title":{"type":"string","description":"Short title."},"url":{"type":["string","null"],"description":"URL to the short."},"viewCount":{"type":["number","null"],"description":"Number of views."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the short thumbnail."}},"required":["id","title"]},"description":"List of YouTube Shorts matching the query."},"channels":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"YouTube channel ID."},"name":{"type":"string","description":"Channel display name."},"url":{"type":["string","null"],"description":"URL to the channel page."},"handle":{"type":["string","null"],"description":"Channel handle (e.g. '@veritasium')."},"subscriberCount":{"type":["number","null"],"description":"Number of subscribers."},"description":{"type":["string","null"],"description":"Channel description snippet."},"verified":{"type":["boolean","null"],"description":"Whether the channel is verified."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the channel thumbnail."}},"required":["name"]},"description":"List of channel results matching the query."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page of search results. Pass this as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["videos","shorts","channels"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/youtube/channel":{"post":{"operationId":"youtubeChannel","summary":"Fetch YouTube channel info and videos","tags":["YouTube"],"description":"Fetches metadata and videos for a YouTube channel. Returns subscriber count, description, video count, total views, and a paginated list of videos. Use `nextPageToken` from the response to paginate through additional video pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"channelIdentifier":{"type":"string","minLength":1,"description":"YouTube channel @handle, channel ID, or full channel URL. Accepts a @handle (e.g. '@veritasium'), a channel ID (e.g. 'UCBcRF18a7Qf58cCRy5xuWwQ'), or a URL (e.g. 'https://www.youtube.com/@veritasium')."},"nextPageToken":{"type":["string","null"],"description":"Pagination token from a previous response to retrieve the next page of channel videos. Omit for the first page."}},"required":["apiKey","channelIdentifier"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"youtubeChannelDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"channel":{"type":"object","properties":{"id":{"type":"string","description":"YouTube channel ID."},"name":{"type":"string","description":"Channel display name."},"url":{"type":["string","null"],"description":"URL to the channel page."},"subscriberCount":{"type":["number","null"],"description":"Number of subscribers."},"description":{"type":["string","null"],"description":"Channel description."},"countryCode":{"type":["string","null"],"description":"Country associated with the channel (may be a full name or an ISO code)."},"videoCount":{"type":["number","null"],"description":"Total number of videos on the channel."},"viewCount":{"type":["number","null"],"description":"Total view count across all videos."}},"required":["id","name"],"description":"Channel metadata."},"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"YouTube video ID — the unique identifier found in the URL. For example, in 'https://www.youtube.com/watch?v=094y1Z2wpJg', the video ID is '094y1Z2wpJg'."},"title":{"type":"string","description":"Video title."},"url":{"type":["string","null"],"description":"URL to the video."},"publishedAt":{"type":["object","null"],"properties":{"date":{"type":"string","description":"ISO 8601 date string (e.g. '2024-03-15T00:00:00.000Z')."},"estimated":{"type":"boolean","description":"True when the date was estimated from an approximate time string (e.g. '2 years ago'). False when an exact date was available."}},"required":["date","estimated"],"description":"Publication date. When YouTube only provides approximate time (e.g. '2 years ago'), we estimate the date and set `estimated: true`."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."}},"required":["id","title"]},"description":"Videos on this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page of channel videos. Pass this as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["channel","videos"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/flights/search":{"post":{"operationId":"flightSearch","summary":"Search flights","tags":["Market intelligence"],"description":"Searches flight itineraries between cities of interest and returns trips, fares, timing, etc.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per search&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"travelClass":{"type":["string","null"],"enum":["economy","premiumEconomy","business","first",null],"description":"Preferred cabin class. Omit to consider flights across all cabin classes."},"adults":{"type":"integer","minimum":1,"maximum":9,"default":1,"description":"Number of adult passengers (ages 12+)."},"children":{"type":"integer","minimum":0,"maximum":8,"default":0,"description":"Number of child passengers (ages 2-11)."},"infantsInSeat":{"type":"integer","minimum":0,"maximum":8,"default":0,"description":"Number of infants (under 2) with their own seat."},"infantsOnLap":{"type":"integer","minimum":0,"maximum":8,"default":0,"description":"Number of infants (under 2) on an adult's lap."},"maxStops":{"type":["integer","null"],"minimum":0,"maximum":2,"description":"Maximum number of stops allowed. 0 = nonstop only, 1 = one stop or fewer, 2 = two stops or fewer. Omit to allow any number of stops."},"sortBy":{"type":["string","null"],"enum":["top","price","departureTime","arrivalTime","duration","emissions",null],"description":"Sort criterion for results. 'top' ranks by overall value. 'price' sorts cheapest first. 'departureTime' and 'arrivalTime' sort earliest first. 'duration' sorts shortest first. 'emissions' sorts lowest carbon first. Direction is always ascending and cannot be changed. Omit to sort by 'top'."},"airlines":{"type":["object","null"],"properties":{"include":{"type":["array","null"],"items":{"type":"string"},"description":"Only return flights operated or marketed by these airlines. Pass 2-letter IATA airline codes (e.g. 'UA' for United, 'AA' for American, 'DL' for Delta, 'B6' for JetBlue). Case-insensitive."},"exclude":{"type":["array","null"],"items":{"type":"string"},"description":"Exclude flights operated or marketed by these airlines. Pass 2-letter IATA airline codes (e.g. 'UA' for United, 'AA' for American, 'DL' for Delta, 'B6' for JetBlue). Case-insensitive."}},"description":"Filter by airline. By default all airlines are considered. If you pass 'include', only flights from those airlines are returned. If you pass 'exclude', flights from those airlines are removed."},"minCarryOnBags":{"type":["integer","null"],"minimum":0,"maximum":5,"description":"Minimum carry-on bags the itinerary must include. Omit for no requirement."},"minCheckedBags":{"type":["integer","null"],"minimum":0,"maximum":5,"description":"Minimum checked bags the itinerary must include. Omit for no requirement. Honored on a best-effort basis: not every itinerary exposes checked-bag inclusion."},"maxPrice":{"type":["integer","null"],"minimum":1,"description":"Maximum total itinerary price in whole currency units. You may want to set `currencyCode` as well so the price cap is in the currency you expect (default currency is USD). Omit for no price cap."},"outboundTimeWindow":{"type":["object","null"],"properties":{"departure":{"type":["object","null"],"properties":{"startHour":{"type":"integer","minimum":0,"maximum":23,"description":"Start of the hour range (inclusive), in 24-hour format."},"endHour":{"type":"integer","minimum":0,"maximum":23,"description":"End of the hour range (inclusive), in 24-hour format."}},"required":["startHour","endHour"],"description":"Restrict departure times to this hour range."},"arrival":{"type":["object","null"],"properties":{"startHour":{"type":"integer","minimum":0,"maximum":23,"description":"Start of the hour range (inclusive), in 24-hour format."},"endHour":{"type":"integer","minimum":0,"maximum":23,"description":"End of the hour range (inclusive), in 24-hour format."}},"required":["startHour","endHour"],"description":"Restrict arrival times to this hour range."}},"description":"Time-of-day window for outbound flights. For multi-city trips this constrains the first segment. Both startHour and endHour must be provided together per sub-window."},"returnTimeWindow":{"type":["object","null"],"properties":{"departure":{"type":["object","null"],"properties":{"startHour":{"type":"integer","minimum":0,"maximum":23,"description":"Start of the hour range (inclusive), in 24-hour format."},"endHour":{"type":"integer","minimum":0,"maximum":23,"description":"End of the hour range (inclusive), in 24-hour format."}},"required":["startHour","endHour"],"description":"Restrict departure times to this hour range."},"arrival":{"type":["object","null"],"properties":{"startHour":{"type":"integer","minimum":0,"maximum":23,"description":"Start of the hour range (inclusive), in 24-hour format."},"endHour":{"type":"integer","minimum":0,"maximum":23,"description":"End of the hour range (inclusive), in 24-hour format."}},"required":["startHour","endHour"],"description":"Restrict arrival times to this hour range."}},"description":"Time-of-day window for return flights (round-trip only). Both startHour and endHour must be provided together per sub-window."},"layoverDuration":{"type":["object","null"],"properties":{"minMinutes":{"type":["integer","null"],"minimum":30,"maximum":1440,"description":"Minimum layover duration in minutes. Omit for no minimum."},"maxMinutes":{"type":["integer","null"],"minimum":30,"maximum":1440,"description":"Maximum layover duration in minutes. Omit for no maximum."}},"description":"Constrain layover duration. Omit to allow any layover length."},"maxFlightDurationMinutes":{"type":["integer","null"],"minimum":30,"maximum":4320,"description":"Maximum total flight duration in minutes. Omit for no limit."},"connectingAirports":{"type":["object","null"],"properties":{"include":{"type":["array","null"],"items":{"type":"string"},"description":"Only allow itineraries connecting through at least one of these IATA airports (e.g. 'DFW', 'SFO'). Nonstop flights and itineraries that don't match are filtered out. Narrow allowlists may return zero results. Case-insensitive."},"exclude":{"type":["array","null"],"items":{"type":"string"},"description":"Drop itineraries connecting through any of these IATA airports (e.g. 'ORD', 'ATL'). Case-insensitive."}},"description":"Filter by connecting airports. By default all connecting airports are allowed. We recommend not passing this unless you have a good reason — it significantly reduces the number of results returned."},"onlyShowLowEmissionFlights":{"type":"boolean","default":false,"description":"When true, only return flights with lower-than-typical carbon emissions. When false (default), return all flights."},"showHidden":{"type":"boolean","default":true,"description":"When true, include itineraries that would normally be hidden (e.g. very late or undesirable schedules)."},"hideSeparateTickets":{"type":"boolean","default":false,"description":"When true, drop itineraries that combine separately-issued tickets (which carry higher disruption risk)."},"currencyCode":{"type":"string","pattern":"^[A-Za-z]{3}$","default":"USD","description":"ISO 4217 currency code for prices in the response (e.g. 'EUR', 'GBP', 'CAD'). Case-insensitive. Defaults to USD."},"searchMarketCountryCode":{"type":"string","pattern":"^[A-Za-z]{3}$","default":"USA","description":"ISO 3166-1 alpha-3 country code that sets the search market (e.g. 'GBR', 'BRA'). This affects regional pricing and flight availability — the same route may show different prices and options depending on the market. Case-insensitive."},"languageCode":{"type":"string","pattern":"^[a-z]{2,3}(?:-[A-Za-z0-9]{2,8})*$","default":"en","description":"Language for search results (airport names, airline names, labels). Pass a BCP-47 language tag such as 'en', 'en-US', 'pt-BR', 'zh-CN', 'ja', 'ko', 'fr', 'de', 'es'."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as nextPageToken in the next request. Null if no more pages."},"trip":{"oneOf":[{"type":"object","properties":{"flightType":{"type":"string","enum":["one_way"]},"departureAirports":{"type":"string","description":"Airport(s) to search. Accepts a 3-letter IATA airport code (e.g. 'JFK'), a comma-separated IATA list to search multiple airports (e.g. 'JFK,LGA,EWR'), an X- metro alias that covers every airport in a metro area (e.g. 'X-NYC' — call GET /v1/enums/flight-regions for the full list), or a Freebase ID for a city or metro (e.g. '/m/02_286'). Case-insensitive except Freebase IDs."},"arrivalAirports":{"type":"string","description":"Airport(s) to search. Accepts a 3-letter IATA airport code (e.g. 'JFK'), a comma-separated IATA list to search multiple airports (e.g. 'JFK,LGA,EWR'), an X- metro alias that covers every airport in a metro area (e.g. 'X-NYC' — call GET /v1/enums/flight-regions for the full list), or a Freebase ID for a city or metro (e.g. '/m/02_286'). Case-insensitive except Freebase IDs."},"outboundDate":{"type":"string","pattern":"^(\\d{4})-(\\d{2})-(\\d{2})$","description":"ISO date in YYYY-MM-DD format (e.g. '2026-06-10')."}},"required":["flightType","departureAirports","arrivalAirports","outboundDate"]},{"type":"object","properties":{"flightType":{"type":"string","enum":["round_trip"]},"departureAirports":{"type":"string","description":"Airport(s) to search. Accepts a 3-letter IATA airport code (e.g. 'JFK'), a comma-separated IATA list to search multiple airports (e.g. 'JFK,LGA,EWR'), an X- metro alias that covers every airport in a metro area (e.g. 'X-NYC' — call GET /v1/enums/flight-regions for the full list), or a Freebase ID for a city or metro (e.g. '/m/02_286'). Case-insensitive except Freebase IDs."},"arrivalAirports":{"type":"string","description":"Airport(s) to search. Accepts a 3-letter IATA airport code (e.g. 'JFK'), a comma-separated IATA list to search multiple airports (e.g. 'JFK,LGA,EWR'), an X- metro alias that covers every airport in a metro area (e.g. 'X-NYC' — call GET /v1/enums/flight-regions for the full list), or a Freebase ID for a city or metro (e.g. '/m/02_286'). Case-insensitive except Freebase IDs."},"outboundDate":{"type":"string","pattern":"^(\\d{4})-(\\d{2})-(\\d{2})$","description":"ISO date in YYYY-MM-DD format (e.g. '2026-06-10')."},"returnDate":{"type":"string","pattern":"^(\\d{4})-(\\d{2})-(\\d{2})$","description":"ISO date in YYYY-MM-DD format (e.g. '2026-06-10')."}},"required":["flightType","departureAirports","arrivalAirports","outboundDate","returnDate"]},{"type":"object","properties":{"flightType":{"type":"string","enum":["multi_city"]},"segments":{"type":"array","items":{"type":"object","properties":{"departureAirports":{"type":"string","description":"Airport(s) to search. Accepts a 3-letter IATA airport code (e.g. 'JFK'), a comma-separated IATA list to search multiple airports (e.g. 'JFK,LGA,EWR'), an X- metro alias that covers every airport in a metro area (e.g. 'X-NYC' — call GET /v1/enums/flight-regions for the full list), or a Freebase ID for a city or metro (e.g. '/m/02_286'). Case-insensitive except Freebase IDs."},"arrivalAirports":{"type":"string","description":"Airport(s) to search. Accepts a 3-letter IATA airport code (e.g. 'JFK'), a comma-separated IATA list to search multiple airports (e.g. 'JFK,LGA,EWR'), an X- metro alias that covers every airport in a metro area (e.g. 'X-NYC' — call GET /v1/enums/flight-regions for the full list), or a Freebase ID for a city or metro (e.g. '/m/02_286'). Case-insensitive except Freebase IDs."},"outboundDate":{"type":"string","pattern":"^(\\d{4})-(\\d{2})-(\\d{2})$","description":"ISO date in YYYY-MM-DD format (e.g. '2026-06-10')."}},"required":["departureAirports","arrivalAirports","outboundDate"]},"minItems":2,"maxItems":5,"description":"Provide between 2 and 5 segments."}},"required":["flightType","segments"]}],"description":"Trip configuration. The shape is determined by flightType — see each variant for its required fields."}},"required":["apiKey","trip"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per search","variableCosts":[{"credits":2,"perUnit":"search","operation":"flightSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"bestFlights":{"type":"array","items":{"type":"object","properties":{"segments":{"type":"array","items":{"type":"object","properties":{"departureAirport":{"type":"object","properties":{"iataCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"3-letter IATA airport code (e.g. 'JFK', 'LAX', 'LHR')."},"name":{"type":["string","null"],"description":"Airport display name."},"localDateTime":{"type":["string","null"],"description":"Local departure or arrival datetime without timezone offset (format: YYYY-MM-DDTHH:mm:ss)."}},"description":"Departure airport."},"arrivalAirport":{"type":"object","properties":{"iataCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"3-letter IATA airport code (e.g. 'JFK', 'LAX', 'LHR')."},"name":{"type":["string","null"],"description":"Airport display name."},"localDateTime":{"type":["string","null"],"description":"Local departure or arrival datetime without timezone offset (format: YYYY-MM-DDTHH:mm:ss)."}},"description":"Arrival airport."},"durationMinutes":{"type":["integer","null"],"description":"Segment duration in minutes."},"airlineName":{"type":["string","null"],"description":"Operating airline name."},"airlineLogoUrl":{"type":["string","null"],"description":"Operating airline logo URL."},"travelClass":{"type":["string","null"],"description":"Cabin class as labeled in the search results (e.g. 'Economy', 'Premium Economy', 'Business', 'First')."},"flightNumber":{"type":["string","null"],"description":"Flight number including airline code (e.g. 'UA 2175', 'DL 1384')."},"aircraftModel":{"type":["string","null"],"description":"Aircraft model."},"legroom":{"type":["string","null"],"description":"Legroom distance as reported by the airline (e.g. '32 in')."},"isOvernight":{"type":["boolean","null"],"description":"True when this segment is overnight."},"isOftenDelayed":{"type":["boolean","null"],"description":"True when this segment is frequently delayed."},"carbonEmissionKg":{"type":["number","null"],"description":"Estimated carbon emissions in kilograms."}},"required":["departureAirport","arrivalAirport"]},"description":"Flight segments for this itinerary."},"layovers":{"type":"array","items":{"type":"object","properties":{"iataCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"3-letter IATA code of the layover airport (e.g. 'DFW', 'ORD')."},"airportName":{"type":["string","null"],"description":"Layover airport name."},"durationMinutes":{"type":["integer","null"],"description":"Layover duration in minutes."},"isOvernight":{"type":["boolean","null"],"description":"True when layover spans overnight."}}},"description":"Layovers for this itinerary."},"totalDurationMinutes":{"type":["integer","null"],"description":"Total itinerary duration in minutes."},"price":{"type":["integer","null"],"description":"Total itinerary price in whole currency units."},"bookingToken":{"type":["string","null"],"description":"Opaque booking token. Pass this in follow-up requests to retrieve booking options for this itinerary."},"flightType":{"type":["string","null"],"enum":["one_way","round_trip","multi_city",null],"description":"Trip type for this itinerary."},"mainAirlineLogoUrl":{"type":["string","null"],"description":"Logo URL for the primary airline on this itinerary. For multi-airline itineraries this may be a generic multi-carrier logo."},"carbonEmissions":{"type":["object","null"],"properties":{"thisFlightKg":{"type":["integer","null"],"description":"Estimated emissions for this itinerary in kilograms."},"typicalForRouteKg":{"type":["integer","null"],"description":"Typical route emissions in kilograms."},"differencePercent":{"type":["number","null"],"description":"Percent difference versus typical route emissions. Negative means lower than typical, positive means higher."}},"description":"Carbon emissions summary for this itinerary."},"alsoSoldBy":{"type":["array","null"],"items":{"type":"string"},"description":"Full names of other airlines that also sell this itinerary (e.g. 'United', 'Korean Air')."},"operatingCarrier":{"type":["string","null"],"description":"Full name of the airline operating the aircraft and crew, when it differs from the marketing airline (e.g. 'Envoy Air' operating on behalf of American Airlines)."}},"required":["segments","layovers"]},"description":"Best flight itineraries for this query."},"otherFlights":{"type":"array","items":{"type":"object","properties":{"segments":{"type":"array","items":{"type":"object","properties":{"departureAirport":{"type":"object","properties":{"iataCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"3-letter IATA airport code (e.g. 'JFK', 'LAX', 'LHR')."},"name":{"type":["string","null"],"description":"Airport display name."},"localDateTime":{"type":["string","null"],"description":"Local departure or arrival datetime without timezone offset (format: YYYY-MM-DDTHH:mm:ss)."}},"description":"Departure airport."},"arrivalAirport":{"type":"object","properties":{"iataCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"3-letter IATA airport code (e.g. 'JFK', 'LAX', 'LHR')."},"name":{"type":["string","null"],"description":"Airport display name."},"localDateTime":{"type":["string","null"],"description":"Local departure or arrival datetime without timezone offset (format: YYYY-MM-DDTHH:mm:ss)."}},"description":"Arrival airport."},"durationMinutes":{"type":["integer","null"],"description":"Segment duration in minutes."},"airlineName":{"type":["string","null"],"description":"Operating airline name."},"airlineLogoUrl":{"type":["string","null"],"description":"Operating airline logo URL."},"travelClass":{"type":["string","null"],"description":"Cabin class as labeled in the search results (e.g. 'Economy', 'Premium Economy', 'Business', 'First')."},"flightNumber":{"type":["string","null"],"description":"Flight number including airline code (e.g. 'UA 2175', 'DL 1384')."},"aircraftModel":{"type":["string","null"],"description":"Aircraft model."},"legroom":{"type":["string","null"],"description":"Legroom distance as reported by the airline (e.g. '32 in')."},"isOvernight":{"type":["boolean","null"],"description":"True when this segment is overnight."},"isOftenDelayed":{"type":["boolean","null"],"description":"True when this segment is frequently delayed."},"carbonEmissionKg":{"type":["number","null"],"description":"Estimated carbon emissions in kilograms."}},"required":["departureAirport","arrivalAirport"]},"description":"Flight segments for this itinerary."},"layovers":{"type":"array","items":{"type":"object","properties":{"iataCode":{"type":["string","null"],"minLength":3,"maxLength":3,"description":"3-letter IATA code of the layover airport (e.g. 'DFW', 'ORD')."},"airportName":{"type":["string","null"],"description":"Layover airport name."},"durationMinutes":{"type":["integer","null"],"description":"Layover duration in minutes."},"isOvernight":{"type":["boolean","null"],"description":"True when layover spans overnight."}}},"description":"Layovers for this itinerary."},"totalDurationMinutes":{"type":["integer","null"],"description":"Total itinerary duration in minutes."},"price":{"type":["integer","null"],"description":"Total itinerary price in whole currency units."},"bookingToken":{"type":["string","null"],"description":"Opaque booking token. Pass this in follow-up requests to retrieve booking options for this itinerary."},"flightType":{"type":["string","null"],"enum":["one_way","round_trip","multi_city",null],"description":"Trip type for this itinerary."},"mainAirlineLogoUrl":{"type":["string","null"],"description":"Logo URL for the primary airline on this itinerary. For multi-airline itineraries this may be a generic multi-carrier logo."},"carbonEmissions":{"type":["object","null"],"properties":{"thisFlightKg":{"type":["integer","null"],"description":"Estimated emissions for this itinerary in kilograms."},"typicalForRouteKg":{"type":["integer","null"],"description":"Typical route emissions in kilograms."},"differencePercent":{"type":["number","null"],"description":"Percent difference versus typical route emissions. Negative means lower than typical, positive means higher."}},"description":"Carbon emissions summary for this itinerary."},"alsoSoldBy":{"type":["array","null"],"items":{"type":"string"},"description":"Full names of other airlines that also sell this itinerary (e.g. 'United', 'Korean Air')."},"operatingCarrier":{"type":["string","null"],"description":"Full name of the airline operating the aircraft and crew, when it differs from the marketing airline (e.g. 'Envoy Air' operating on behalf of American Airlines)."}},"required":["segments","layovers"]},"description":"Additional flight itineraries for this query."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if no more pages."},"currencyCode":{"type":["string","null"],"pattern":"^[A-Z]{3}$","description":"ISO 4217 currency code for prices in this response (e.g. 'USD', 'EUR', 'GBP')."},"priceInsights":{"type":["object","null"],"properties":{"lowestPrice":{"type":["integer","null"],"description":"Lowest observed price for this query."},"priceLevel":{"type":["string","null"],"enum":["low","typical","high",null],"description":"How the current price compares to historical prices for this route."},"typicalPriceRange":{"type":["object","null"],"properties":{"lowerBound":{"type":["integer","null"],"description":"Lower bound of the typical price range."},"upperBound":{"type":["integer","null"],"description":"Upper bound of the typical price range."}},"description":"Typical price range for this route in whole currency units."},"history":{"type":"array","items":{"type":"object","properties":{"snapshotDate":{"type":["string","null"],"description":"Date this price was observed (e.g. '2024-09-19')."},"price":{"type":"integer","description":"Observed price in whole currency units."}},"required":["price"]},"description":"Historical prices for this route."}},"required":["history"],"description":"Price-insight summary for this route query."},"airports":{"type":"array","items":{"type":"object","properties":{"departure":{"type":"array","items":{"type":"object","properties":{"iataCode":{"type":["string","null"],"description":"IATA airport code (e.g. 'JFK'). When the search targeted a metro area via an X- alias or Freebase ID input, this will be a Freebase ID (e.g. '/m/02_286') representing the metro rather than a single airport."},"name":{"type":["string","null"],"description":"Airport name."},"city":{"type":["string","null"],"description":"City name."},"countryCode":{"type":["string","null"],"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."}}},"description":"Departure airport options matched for this query."},"arrival":{"type":"array","items":{"type":"object","properties":{"iataCode":{"type":["string","null"],"description":"IATA airport code (e.g. 'JFK'). When the search targeted a metro area via an X- alias or Freebase ID input, this will be a Freebase ID (e.g. '/m/02_286') representing the metro rather than a single airport."},"name":{"type":["string","null"],"description":"Airport name."},"city":{"type":["string","null"],"description":"City name."},"countryCode":{"type":["string","null"],"description":"ISO 3166-1 alpha-3 country code (e.g. 'USA', 'GBR')."}}},"description":"Arrival airport options matched for this query."}},"required":["departure","arrival"]},"description":"Airports recognized for departure and arrival in this query."}},"required":["bestFlights","otherFlights","airports"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/real-estate/listings":{"post":{"operationId":"fetchRealEstateListings","summary":"Fetch real estate listings","tags":["Market intelligence"],"description":"Fetches real estate listings by location and optional filters such as listing status, price ranges, home types, and property features. Data is available for all 50 US states, D.C., Puerto Rico, and all 13 Canadian provinces and territories.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>\n\n<span>⏱ <strong>Recommended timeout:</strong> 30 seconds&nbsp;<span title=\"Recommended timeout: set your HTTP client timeout to at least 30 seconds for this endpoint.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"location":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","enum":["raw"]},"rawQuery":{"type":"string","minLength":1,"description":"Free-form location text. Accepts city, city + state/province, ZIP/postal code, or full address (e.g., 'Toronto, ON', 'Brooklyn NY', '10001', 'Trois-Rivières, QC'). Resolved via geocoding to a city + state/province before searching."}},"required":["type","rawQuery"]},{"type":"object","properties":{"type":{"type":"string","enum":["structured"]},"city":{"type":"string","minLength":1,"description":"City name (e.g., 'Toronto', 'Trois-Rivières')."},"stateCode":{"type":"string","pattern":"^[A-Za-z]{2}$","description":"Two-letter US state code or Canadian province code (e.g., 'NY', 'CA', 'QC', 'ON')."}},"required":["type","city","stateCode"]}],"description":"Location input for listing search. Use `raw` for user-provided text and `structured` for exact city/state precision."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response. Omit for the first page."},"sortBy":{"type":["string","null"],"enum":["relevance","newest","priceAscending","priceDescending","paymentAscending","paymentDescending","bedroomCountDescending","bathroomCountDescending","floorAreaSqFtDescending","lotAreaSqFtDescending","estimatedPriceDescending","estimatedPriceAscending",null],"description":"Sort order for search results."},"listingStatus":{"type":["string","null"],"enum":["forSale","forRent","sold",null],"description":"Listing category to search."},"homeTypes":{"type":["array","null"],"items":{"type":"string","enum":["house","condo","townhouse","multi_family","apartment","land","manufactured"]},"description":"Property types to include."},"price":{"type":["object","null"],"properties":{"min":{"type":["number","null"],"minimum":0},"max":{"type":["number","null"],"minimum":0}},"description":"Price range filter for sale and sold listings. Values must use the local market currency for the location (for example, CAD for Canada and USD for the United States)."},"rent":{"type":["object","null"],"properties":{"min":{"type":["number","null"],"minimum":0},"max":{"type":["number","null"],"minimum":0}},"description":"Monthly rent range filter for rental listings. Values must use the local market currency for the location (for example, CAD for Canada and USD for the United States)."},"bedrooms":{"type":["object","null"],"properties":{"min":{"type":"integer","minimum":1,"maximum":5}},"required":["min"],"description":"Bedroom count filter. Use `min` to set the lower bound."},"bathrooms":{"type":["object","null"],"properties":{"min":{"type":"number","minimum":1,"maximum":4}},"required":["min"],"description":"Bathroom count filter. Use `min` to set the lower bound."},"floorAreaSqFt":{"type":["object","null"],"properties":{"min":{"type":["number","null"],"minimum":0},"max":{"type":["number","null"],"minimum":0}},"description":"Interior living-area range in square feet."},"lotAreaSqFt":{"type":["object","null"],"properties":{"min":{"type":["number","null"],"minimum":0},"max":{"type":["number","null"],"minimum":0}},"description":"Lot-size range in square feet."},"yearBuilt":{"type":["object","null"],"properties":{"min":{"type":["integer","null"],"minimum":1800},"max":{"type":["integer","null"],"minimum":1800}},"description":"Year-built range."},"parkingSpots":{"type":["object","null"],"properties":{"min":{"type":"integer","minimum":1,"description":"Minimum number of parking spots."}},"required":["min"],"description":"Parking spots filter."},"keywords":{"type":["string","null"],"minLength":1,"description":"Additional keyword terms to match in listing text. For broader matching, separate terms with commas (for example: 'pool,garage')."},"features":{"type":["object","null"],"properties":{"hasPool":{"type":["boolean","null"]},"hasGarage":{"type":["boolean","null"]},"hasAirConditioning":{"type":["boolean","null"]},"isWaterfront":{"type":["boolean","null"]},"isSingleStory":{"type":["boolean","null"]},"hasOpenHouse":{"type":["boolean","null"]},"includeUnderContract":{"type":["boolean","null"]}},"description":"Optional property feature filters."}},"required":["apiKey","location"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"realEstateSearch"}],"chargingMethod":"charged-now"},"x-recommended-timeout":{"timeoutSeconds":30,"displayText":"30 seconds"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"runId":{"type":"string","description":"Unique identifier for this search request."},"totalResultCount":{"type":["integer","null"],"description":"Total number of matching listings."},"regionName":{"type":["string","null"],"description":"Region name interpreted for this search query."},"nextPageToken":{"type":["string","null"],"description":"Token for retrieving the next page. Pass this exact value as `nextPageToken` in the next request. Null if no more pages."},"properties":{"type":"array","items":{"type":"object","properties":{"price":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Price represented in both USD and local listing currency."},"position":{"type":["integer","null"],"description":"Result position on this page."},"listingId":{"type":"string","description":"Unique listing identifier."},"address":{"type":["string","null"],"description":"Full property address."},"street":{"type":["string","null"],"description":"Street address."},"city":{"type":["string","null"],"description":"City name."},"state":{"type":["string","null"],"description":"State or province code."},"postalCode":{"type":["string","null"],"description":"Postal or ZIP code."},"unitNumber":{"type":["string","null"],"description":"Unit or apartment number, when the listing is part of a multi-unit building."},"bedroomCount":{"type":["integer","null"],"description":"Number of bedrooms."},"bathroomCount":{"type":["number","null"],"description":"Number of bathrooms."},"estimatedPrice":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Estimated property value in USD and local currency."},"estimatedMonthlyRent":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Estimated monthly rent in USD and local currency."},"priceChangeAmount":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Latest absolute price change in USD and local currency."},"priceReductionNote":{"type":["string","null"],"description":"Formatted price-reduction note."},"taxAssessedValue":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Tax-assessed property value in USD and local currency."},"floorAreaSqFt":{"type":["integer","null"],"description":"Living area in square feet."},"lotAreaSqFt":{"type":["number","null"],"description":"Lot size in square feet."},"homeType":{"type":["string","null"],"description":"Property type label."},"listingLifecycleStatus":{"type":["string","null"],"description":"Listing lifecycle status."},"listingStatusLabel":{"type":["string","null"],"description":"Human-readable listing status label."},"listingType":{"type":["string","null"],"description":"Listing type."},"dateSold":{"type":["string","null"],"description":"Sold date."},"datePriceChanged":{"type":["string","null"],"description":"Latest price-change date."},"newConstructionType":{"type":["string","null"],"description":"New-construction type."},"timeOnMarketDays":{"type":["integer","null"],"description":"Number of days this listing has been on market."},"url":{"type":["string","null"],"description":"Listing URL."},"thumbnailUrl":{"type":["string","null"],"description":"Listing thumbnail URL."},"imageUrls":{"type":["array","null"],"items":{"type":"string"},"description":"Listing image URLs."},"streetViewUrl":{"type":["string","null"],"description":"Street-view URL."},"has3dModel":{"type":["boolean","null"],"description":"Whether a 3D model is available."},"brokerName":{"type":["string","null"],"description":"Listing broker name."},"builderName":{"type":["string","null"],"description":"Builder name."},"isShowcaseListing":{"type":["boolean","null"],"description":"Whether the listing is marked as showcase."},"isFeaturedListing":{"type":["boolean","null"],"description":"Whether the listing is marked as featured."},"primaryTag":{"type":["object","null"],"properties":{"type":{"type":["string","null"]},"text":{"type":["string","null"]}},"description":"Primary listing tag."},"listingTags":{"type":["array","null"],"items":{"type":"object","properties":{"type":{"type":["string","null"]},"text":{"type":["string","null"]}}},"description":"Additional listing tags."},"contactPhone":{"type":["string","null"],"description":"Listing contact phone number."},"openHouse":{"type":["object","null"],"properties":{"description":{"type":["string","null"]},"startDate":{"type":["string","null"]},"endDate":{"type":["string","null"]}},"description":"Open-house details."},"buildingName":{"type":["string","null"],"description":"Building name."},"rentalUnits":{"type":["array","null"],"items":{"type":"object","properties":{"price":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Unit asking price in USD and local currency."},"bedroomCount":{"type":["integer","null"],"description":"Number of bedrooms in the unit. 0 indicates a studio."},"isRoomForRent":{"type":["boolean","null"],"description":"Whether the unit is a single room for rent."}}},"description":"Individual rental units available in a multi-unit building."},"availabilityCount":{"type":["integer","null"],"description":"Count of available units."},"baseRent":{"type":["object","null"],"properties":{"min":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Minimum base rent in USD and local currency."},"max":{"type":["object","null"],"properties":{"usd":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price converted to USD when conversion data is available."},"local":{"type":"object","properties":{"currency":{"type":["string","null"],"description":"ISO 4217 currency code for the listing price."},"amount":{"type":["number","null"],"description":"Numeric listing price amount."}},"description":"Listing price in the local market currency."}},"required":["usd","local"],"description":"Maximum base rent in USD and local currency."}},"description":"Base-rent range in USD and local currency."},"availabilityDate":{"type":["string","null"],"description":"Availability date."},"isInstantTourEnabled":{"type":["boolean","null"],"description":"Whether instant tour is enabled."},"factsAndFeatures":{"type":["object","null"],"additionalProperties":{},"description":"Additional facts and features."},"countryCode":{"type":["string","null"],"description":"ISO 3166-1 alpha-3 country code (for example: 'CAN')."},"latitude":{"type":["number","null"],"description":"Latitude coordinate."},"longitude":{"type":["number","null"],"description":"Longitude coordinate."}},"required":["listingId"]},"description":"Properties returned for this page."},"warnings":{"type":["array","null"],"items":{"type":"string"},"description":"Non-fatal advisories about how this page was served. For example, 'Sort \\'priceAscending\\' is applied from page 2 onwards.' when the requested sort cannot be honored on page 1. Omitted or null when there's nothing to flag."}},"required":["runId","properties"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/scouting-report":{"post":{"operationId":"getScoutingReport","summary":"Get company scouting report","tags":["Company info"],"description":"Generates a comprehensive scouting report for a company including news, founders, funding, media links, and historical headcount. This endpoint may take 1-2 minutes to respond as it gathers data from multiple sources — please set a generous client timeout (at least 120 seconds).\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 6 credits per scouting report&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"company":{"oneOf":[{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinUrl"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/anthropic')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinSlug"]},"value":{"type":"string","minLength":1,"description":"LinkedIn company slug (e.g. 'anthropic')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["linkedinOrgId"]},"value":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"LinkedIn numeric organization ID (e.g. '1441')."}},"required":["identifier","value"]},{"type":"object","properties":{"identifier":{"type":"string","enum":["domain"]},"value":{"type":"string","minLength":1,"description":"Company website domain (e.g. 'anthropic.com')."}},"required":["identifier","value"]}],"description":"Company identifier. Set identifier to 'linkedinUrl', 'linkedinSlug', 'linkedinOrgId', or 'domain' and provide the corresponding value."}},"required":["apiKey","company"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"6 credits per scouting report","variableCosts":[{"credits":6,"perUnit":"scouting report","operation":"scoutingReportCompany"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"company":{"type":"object","properties":{"linkedinUrl":{"type":["string","null"],"minLength":1,"description":"LinkedIn company URL. Null when no validated LinkedIn URL could be resolved."},"linkedinOrgId":{"type":["string","null"],"minLength":1,"description":"LinkedIn numeric organization ID. Null when the company has no known org ID."},"name":{"type":["string","null"],"minLength":1,"description":"Company display name. Null when the name is not available in our data."},"domain":{"type":["string","null"],"minLength":1,"description":"Company website domain. Null when the domain is not available in our data."}},"required":["linkedinUrl","linkedinOrgId","name","domain"]},"report":{"type":"object","properties":{"news":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string"},"url":{"type":"string"},"date":{"type":["string","null"]},"summary":{"type":["string","null"]}},"required":["title","url"]},"default":[]},"mediaLinks":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","enum":["youtube","podcast"]},"title":{"type":"string"},"url":{"type":"string"},"description":{"type":["string","null"]}},"required":["type","title","url"]},"default":[]},"blogPosts":{"type":"array","items":{"type":"object","properties":{"title":{"type":"string"},"url":{"type":"string"},"date":{"type":["string","null"]},"summary":{"type":["string","null"]}},"required":["title","url"]},"default":[]},"aboutDescription":{"type":["string","null"]},"companyPhotos":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string"},"caption":{"type":["string","null"]}},"required":["url"]},"default":[]},"milestones":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string"},"description":{"type":"string"},"date":{"type":["string","null"]}},"required":["type","description"]},"default":[]},"fundingInfo":{"type":["object","null"],"properties":{"stage":{"type":["string","null"]},"totalFundingUsd":{"type":["number","null"]},"lastRoundUsd":{"type":["number","null"]},"lastRoundDate":{"type":["string","null"]},"investors":{"type":"array","items":{"type":"string"},"default":[]},"description":{"type":["string","null"]}},"required":["investors"]},"jobPosts":{"type":"array","items":{"type":"object","properties":{"jobId":{"type":"string"},"title":{"type":["string","null"]},"location":{"type":["string","null"]},"postedAt":{"type":["string","null"]},"jobUrl":{"type":["string","null"]},"locationType":{"type":["string","null"]}},"required":["jobId","title","location","postedAt","jobUrl","locationType"]},"default":[]},"founders":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"role":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"profilePicUrl":{"type":["string","null"]}},"required":["name"]},"default":[]},"historicalHeadcount":{"type":["object","null"],"properties":{"latest_snapshot_date":{"type":"string","format":"date"},"snapshots":{"type":"array","items":{"type":"object","properties":{"date":{"type":"string","format":"date"},"employees":{"type":"integer"}},"required":["date","employees"]}},"growth":{"type":"object","properties":{"1m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"2m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"3m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"6m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"12m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"18m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"24m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]},"36m":{"type":["object","null"],"properties":{"percent":{"type":"number"},"quantity":{"type":"integer"}},"required":["percent","quantity"]}}}},"required":["latest_snapshot_date","snapshots","growth"],"default":null},"companySummary":{"type":["string","null"],"default":null},"companyProfile":{"type":["object","null"],"properties":{"name":{"type":["string","null"]},"headline":{"type":["string","null"]},"description":{"type":["string","null"]},"logoUrl":{"type":["string","null"]},"website":{"type":["string","null"]},"linkedinUrl":{"type":["string","null"]},"followerCount":{"type":["number","null"]},"employeeCount":{"type":["number","null"]},"foundedYear":{"type":["number","null"]},"streetAddress":{"type":["string","null"]},"locality":{"type":["string","null"]},"countryName":{"type":["string","null"]},"stateCode":{"type":["string","null"]},"industries":{"type":["array","null"],"items":{"type":"string"}},"specialties":{"type":["array","null"],"items":{"type":"string"}},"twitterHandle":{"type":["string","null"]},"facebookUrl":{"type":["string","null"]},"wellfoundSlug":{"type":["string","null"]}},"required":["name","headline","description","logoUrl","website","linkedinUrl","followerCount","employeeCount","foundedYear","streetAddress","locality","countryName","stateCode","industries","specialties","twitterHandle","facebookUrl","wellfoundSlug"],"default":null}},"required":["news","mediaLinks","blogPosts","companyPhotos","milestones","jobPosts","founders","historicalHeadcount","companySummary","companyProfile"],"description":"The generated scouting report"}},"required":["company","report"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/create-list":{"post":{"operationId":"createJobChangeList","summary":"Create job change list","tags":["Job changes"],"description":"Create a new job changes list. Track people when they change their jobs.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","description":"The name of the job change list."}},"required":["apiKey","name"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the job change list."},"name":{"type":"string","description":"The name of the job change list."},"status":{"type":"string","enum":["NORMAL","DRAFT","BUILDING","ERROR"],"description":"Status of the Journeyman list. 'NORMAL' = list has profiles and is ready to use. 'DRAFT' = list is empty, no profiles added yet. 'BUILDING' = profiles are currently being added to the list. 'ERROR' = list is broken and unusable; contact support."},"isActive":{"type":"boolean","description":"Is the list is active or not. By default, the list is in-active."}},"required":["id","name","status","isActive"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/get-list":{"post":{"operationId":"getJourneymanList","summary":"Get a job changes list","tags":["Job changes"],"description":"Get a job changes list.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"jobChangeListId":{"type":"string","description":"The ID of the job change list."}},"required":["apiKey","jobChangeListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the job change list."},"name":{"type":"string","description":"The name of the job change list."},"createdAt":{"type":"string","description":"When the list was created."},"status":{"type":"string","enum":["NORMAL","DRAFT","BUILDING","ERROR"],"description":"Status of the Journeyman list. 'NORMAL' = list has profiles and is ready to use. 'DRAFT' = list is empty, no profiles added yet. 'BUILDING' = profiles are currently being added to the list. 'ERROR' = list is broken and unusable; contact support."},"isActive":{"type":"boolean","description":"Shows if the list is active or not."}},"required":["id","name","createdAt","status","isActive"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/update-list":{"post":{"operationId":"updateJobChangeList","summary":"Update job change list","tags":["Job changes"],"description":"Update a job changes list. Track people when they change their jobs.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"jobChangeListId":{"type":"string","description":"The ID of the job change list."},"newName":{"type":["string","null"],"description":"The name of the job change list."},"isActive":{"type":["boolean","null"],"description":"Make the list active or in-active."}},"required":["apiKey","jobChangeListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the job change list."},"name":{"type":"string","description":"The name of the job change list."},"status":{"type":"string","enum":["NORMAL","DRAFT","BUILDING","ERROR"],"description":"Status of the Journeyman list. 'NORMAL' = list has profiles and is ready to use. 'DRAFT' = list is empty, no profiles added yet. 'BUILDING' = profiles are currently being added to the list. 'ERROR' = list is broken and unusable; contact support."},"isActive":{"type":"boolean","description":"Is the list is active or not. By default, the list is in-active."}},"required":["id","name","status","isActive"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/delete-list":{"post":{"operationId":"deleteJobChangeList","summary":"Delete a job changes list","tags":["Job changes"],"description":"Deletes a job changes list. This will remove the list and stop tracking job changes for prospects in this list.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"jobChangeListId":{"type":"string","description":"The ID of the job change list."}},"required":["apiKey","jobChangeListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"jobChangeListId":{"type":"string","description":"The ID of the deleted job change list."},"deleted":{"type":"boolean","description":"Whether the list was successfully deleted."}},"required":["jobChangeListId","deleted"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/add-profiles":{"post":{"operationId":"addProfilesToList","summary":"Add profiles to the job change list","tags":["Job changes"],"description":"Add profiles to the job change list whose job changes you want to track. Note: we automatically remove 404 profiles from the list. Once the upload starts, you can use /job-changes/get-list to track the upload progress.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 1 credit per Number of prospect tracking&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"jobChangeListId":{"type":"string","description":"The job change list id."},"profiles":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":"string","pattern":"^(?:https?:\\/\\/)?(?:[a-z]+\\.)?linkedin\\.[a-z]{2,}\\/(?:in|sales\\/lead|talent\\/profile)\\/(?<slug>[^/\\\\?,#]+)\\/?(?:[\\?,#].*)?","description":"A LinkedIn URL, like 'https://www.linkedin.com/in/jake'"}},"required":["linkedinUrl"]},"minItems":1,"maxItems":5000}},"required":["apiKey","jobChangeListId","profiles"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"1 credit per Number of prospect tracking","variableCosts":[{"credits":1,"perUnit":"Number of prospect tracking","operation":"trackPersonsJobChanges"}],"chargingMethod":"charging-later"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"message":{"type":"string"},"invalidProfiles":{"type":"array","items":{"type":"string"}}},"required":["message","invalidProfiles"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/delete-profiles":{"post":{"operationId":"deleteProfilesFromJobChangeList","summary":"Delete profiles from the lists","tags":["Job changes"],"description":"This will remove people from job changes tracking lists\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"profileIds":{"type":"array","items":{"type":"string"},"minItems":1,"maxItems":100,"description":"The ID of the profiles you want remove."},"jobChangeListId":{"type":"string","description":"Job change list id from where you want to delete profiles."}},"required":["apiKey","profileIds","jobChangeListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"numDeleted":{"type":"number","description":"Number of profiles successfully deleted."}},"required":["numDeleted"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/list-all":{"post":{"operationId":"listAllJourneymanLists","summary":"List all job changes lists","tags":["Job changes"],"description":"Lists all job changes lists for your organization. Returns basic info for each list.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"cursor":{"type":["string","null"],"description":"The pagination cursor to continue from a previous response."},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":100,"description":"The number of job changes list to return per page."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"jobChangesLists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the job change list."},"name":{"type":"string","description":"The name of the job change list."},"createdAt":{"type":"string","description":"When the list was created."},"status":{"type":"string","enum":["NORMAL","DRAFT","BUILDING","ERROR"],"description":"Status of the Journeyman list. 'NORMAL' = list has profiles and is ready to use. 'DRAFT' = list is empty, no profiles added yet. 'BUILDING' = profiles are currently being added to the list. 'ERROR' = list is broken and unusable; contact support."},"isActive":{"type":"boolean","description":"Shows if the list is active or not."}},"required":["id","name","createdAt","status","isActive"]}},"totalCount":{"type":"number","description":"Total number of job changes lists."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page. Null if there are no more results."}},"required":["jobChangesLists","totalCount"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/job-changes/list-all-profiles":{"post":{"operationId":"listAllProfilesFromJourneymanList","summary":"Lists all profiles from a job change list","tags":["Job changes"],"description":"Get current state of all profiles from the list. Returns basic info for each profile.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"jobChangeListId":{"type":"string","description":"The job change list id."},"movements":{"type":["array","null"],"items":{"type":"string","enum":["promoted","lateral-move","new-role","changed","no-change"]}},"cursor":{"type":["string","null"],"description":"The pagination cursor to continue from a previous response."},"pageSize":{"type":"integer","minimum":1,"maximum":100,"default":100,"description":"The number of profiles to return per page."}},"required":["apiKey","jobChangeListId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"profiles":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the profile."},"linkedinUrl":{"type":"string","description":"The linkedin url of the profile."},"allMovements":{"type":"array","items":{"type":"object","properties":{"discoveredAt":{"type":"string"},"newCompanyName":{"type":["string","null"]},"newCompanyLogoUrl":{"type":["string","null"]},"newCompanyOrgId":{"type":["string","null"]},"newCompanyLiSlug":{"type":["string","null"]},"newCompanyDomain":{"type":["string","null"]},"newJobTitle":{"type":["string","null"]},"oldCompanyName":{"type":["string","null"]},"oldCompanyLogoUrl":{"type":["string","null"]},"oldCompanyOrgId":{"type":["string","null"]},"oldCompanyLiSlug":{"type":["string","null"]},"oldCompanyDomain":{"type":["string","null"]},"oldJobTitle":{"type":["string","null"]},"startedInRoleAt":{"type":["string","null"]},"startedAtCompanyAt":{"type":["string","null"]},"movement":{"type":"string","enum":["promoted","lateral-move","new-role","changed","no-change"]}},"required":["discoveredAt","movement"]},"description":"Get all movement of the profile sorted latest"}},"required":["id","linkedinUrl","allMovements"]}},"totalCount":{"type":"number","description":"Total number of profiles in the job change list."},"nextCursor":{"type":["string","null"],"description":"The pagination cursor for the next page. Null if there are no more results."}},"required":["profiles","totalCount"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/company-lists":{"post":{"operationId":"createTrackerCompanyList","summary":"Create company tracker list","tags":["Tracker"],"description":"Create a new company tracker list. Add companies to the list, and we will periodically check them for changes matching your tracking rule. Pricing: 2 credits per entity per refresh cycle. Volume discounts (50%+) are available for high-volume tracking (10,000+ entities). Contact sales for details.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"maxLength":200,"description":"Human-readable name for the tracker list"},"refreshIntervalDays":{"type":"integer","minimum":1,"maximum":30,"description":"How often to check tracked companies for changes, in days"},"trackingRules":{"type":["array","null"],"items":{"oneOf":[{"$ref":"#/components/schemas/HeadcountCrossedThreshold"},{"$ref":"#/components/schemas/HeadcountGrowthPercent"},{"$ref":"#/components/schemas/NewFundingRound"},{"$ref":"#/components/schemas/FundingStageChanged"},{"$ref":"#/components/schemas/JobPostingWithKeyword"},{"$ref":"#/components/schemas/JobPostingInFunction"},{"$ref":"#/components/schemas/NewsWithKeyword"},{"$ref":"#/components/schemas/CompanyNews"},{"$ref":"#/components/schemas/HqLocationChanged"},{"$ref":"#/components/schemas/CompanyStatusChanged"},{"$ref":"#/components/schemas/TechnologyAdded"},{"$ref":"#/components/schemas/CompanyPosted"},{"$ref":"#/components/schemas/CompanyPostedWithKeyword"},{"$ref":"#/components/schemas/FollowerCountGrowth"},{"$ref":"#/components/schemas/CompanyNameChanged"},{"$ref":"#/components/schemas/CompanyDescriptionChanged"},{"$ref":"#/components/schemas/CompanyWentInactive"},{"$ref":"#/components/schemas/EmployeeCountMilestone"},{"$ref":"#/components/schemas/NewOfficeLocation"},{"$ref":"#/components/schemas/CompanyLogoChanged"},{"$ref":"#/components/schemas/AcquiredCompany"},{"$ref":"#/components/schemas/NewInvestor"},{"$ref":"#/components/schemas/RecentlyHiredWithTitle"},{"$ref":"#/components/schemas/DepartmentSizeThreshold"}],"discriminator":{"propertyName":"type","mapping":{"headcount_crossed_threshold":"#/components/schemas/HeadcountCrossedThreshold","headcount_growth_percent":"#/components/schemas/HeadcountGrowthPercent","new_funding_round":"#/components/schemas/NewFundingRound","funding_stage_changed":"#/components/schemas/FundingStageChanged","job_posting_with_keyword":"#/components/schemas/JobPostingWithKeyword","job_posting_in_function":"#/components/schemas/JobPostingInFunction","news_with_keyword":"#/components/schemas/NewsWithKeyword","company_news":"#/components/schemas/CompanyNews","hq_location_changed":"#/components/schemas/HqLocationChanged","company_status_changed":"#/components/schemas/CompanyStatusChanged","technology_added":"#/components/schemas/TechnologyAdded","company_posted":"#/components/schemas/CompanyPosted","company_posted_with_keyword":"#/components/schemas/CompanyPostedWithKeyword","follower_count_growth":"#/components/schemas/FollowerCountGrowth","company_name_changed":"#/components/schemas/CompanyNameChanged","company_description_changed":"#/components/schemas/CompanyDescriptionChanged","company_went_inactive":"#/components/schemas/CompanyWentInactive","employee_count_milestone":"#/components/schemas/EmployeeCountMilestone","new_office_location":"#/components/schemas/NewOfficeLocation","company_logo_changed":"#/components/schemas/CompanyLogoChanged","acquired_company":"#/components/schemas/AcquiredCompany","new_investor":"#/components/schemas/NewInvestor","recently_hired_with_title":"#/components/schemas/RecentlyHiredWithTitle","department_size_threshold":"#/components/schemas/DepartmentSizeThreshold"}}},"minItems":1,"maxItems":10,"description":"Tracking rules to evaluate against this list's entities. Multiple rules can be active simultaneously."}},"required":["apiKey","name","refreshIntervalDays"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"companyCount":{"type":"integer","description":"Number of companies in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","companyCount","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"get":{"operationId":"listTrackerCompanyLists","summary":"List company tracker lists","tags":["Tracker"],"description":"List all company tracker lists for your organization.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"lists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"companyCount":{"type":"integer","description":"Number of companies in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","companyCount","createdAt"]}}},"required":["lists"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/company-lists/{listId}":{"get":{"operationId":"getTrackerCompanyList","summary":"Get company tracker list","tags":["Tracker"],"description":"Get a single company tracker list by ID.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"companyCount":{"type":"integer","description":"Number of companies in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","companyCount","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"delete":{"operationId":"deleteTrackerCompanyList","summary":"Delete company tracker list","tags":["Tracker"],"description":"Archive a company tracker list. Stops all monitoring and deactivates all tracked companies and rules on the list. Signal history is preserved for audit purposes.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"ID of the archived list"},"name":{"type":"string","description":"Name of the archived list"},"isArchived":{"type":"boolean","description":"List has been archived","enum":[true]},"isActive":{"type":"boolean","description":"Monitoring has been stopped","enum":[false]}},"required":["id","name","isArchived","isActive"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"patch":{"operationId":"updateTrackerCompanyList","summary":"Update company tracker list","tags":["Tracker"],"description":"Update a company tracker list. Can change name, refresh interval, active status, or manage tracking rules. Supports replace-all (trackingRules) or granular (addRules/removeRuleIds) rule management — but not both in one request.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":["string","null"],"minLength":1,"maxLength":200,"description":"New name for the list"},"refreshIntervalDays":{"type":["integer","null"],"minimum":1,"maximum":30,"description":"New check interval in days"},"isActive":{"type":["boolean","null"],"description":"Pause or resume the list"},"trackingRules":{"type":["array","null"],"items":{"oneOf":[{"$ref":"#/components/schemas/HeadcountCrossedThreshold"},{"$ref":"#/components/schemas/HeadcountGrowthPercent"},{"$ref":"#/components/schemas/NewFundingRound"},{"$ref":"#/components/schemas/FundingStageChanged"},{"$ref":"#/components/schemas/JobPostingWithKeyword"},{"$ref":"#/components/schemas/JobPostingInFunction"},{"$ref":"#/components/schemas/NewsWithKeyword"},{"$ref":"#/components/schemas/CompanyNews"},{"$ref":"#/components/schemas/HqLocationChanged"},{"$ref":"#/components/schemas/CompanyStatusChanged"},{"$ref":"#/components/schemas/TechnologyAdded"},{"$ref":"#/components/schemas/CompanyPosted"},{"$ref":"#/components/schemas/CompanyPostedWithKeyword"},{"$ref":"#/components/schemas/FollowerCountGrowth"},{"$ref":"#/components/schemas/CompanyNameChanged"},{"$ref":"#/components/schemas/CompanyDescriptionChanged"},{"$ref":"#/components/schemas/CompanyWentInactive"},{"$ref":"#/components/schemas/EmployeeCountMilestone"},{"$ref":"#/components/schemas/NewOfficeLocation"},{"$ref":"#/components/schemas/CompanyLogoChanged"},{"$ref":"#/components/schemas/AcquiredCompany"},{"$ref":"#/components/schemas/NewInvestor"},{"$ref":"#/components/schemas/RecentlyHiredWithTitle"},{"$ref":"#/components/schemas/DepartmentSizeThreshold"}],"discriminator":{"propertyName":"type","mapping":{"headcount_crossed_threshold":"#/components/schemas/HeadcountCrossedThreshold","headcount_growth_percent":"#/components/schemas/HeadcountGrowthPercent","new_funding_round":"#/components/schemas/NewFundingRound","funding_stage_changed":"#/components/schemas/FundingStageChanged","job_posting_with_keyword":"#/components/schemas/JobPostingWithKeyword","job_posting_in_function":"#/components/schemas/JobPostingInFunction","news_with_keyword":"#/components/schemas/NewsWithKeyword","company_news":"#/components/schemas/CompanyNews","hq_location_changed":"#/components/schemas/HqLocationChanged","company_status_changed":"#/components/schemas/CompanyStatusChanged","technology_added":"#/components/schemas/TechnologyAdded","company_posted":"#/components/schemas/CompanyPosted","company_posted_with_keyword":"#/components/schemas/CompanyPostedWithKeyword","follower_count_growth":"#/components/schemas/FollowerCountGrowth","company_name_changed":"#/components/schemas/CompanyNameChanged","company_description_changed":"#/components/schemas/CompanyDescriptionChanged","company_went_inactive":"#/components/schemas/CompanyWentInactive","employee_count_milestone":"#/components/schemas/EmployeeCountMilestone","new_office_location":"#/components/schemas/NewOfficeLocation","company_logo_changed":"#/components/schemas/CompanyLogoChanged","acquired_company":"#/components/schemas/AcquiredCompany","new_investor":"#/components/schemas/NewInvestor","recently_hired_with_title":"#/components/schemas/RecentlyHiredWithTitle","department_size_threshold":"#/components/schemas/DepartmentSizeThreshold"}}},"minItems":0,"maxItems":10,"description":"Replace ALL existing rules with this set. Pass empty array to clear all rules. Omit to leave unchanged. Cannot be used with addRules/removeRuleIds."},"addRules":{"type":["array","null"],"items":{"oneOf":[{"$ref":"#/components/schemas/HeadcountCrossedThreshold"},{"$ref":"#/components/schemas/HeadcountGrowthPercent"},{"$ref":"#/components/schemas/NewFundingRound"},{"$ref":"#/components/schemas/FundingStageChanged"},{"$ref":"#/components/schemas/JobPostingWithKeyword"},{"$ref":"#/components/schemas/JobPostingInFunction"},{"$ref":"#/components/schemas/NewsWithKeyword"},{"$ref":"#/components/schemas/CompanyNews"},{"$ref":"#/components/schemas/HqLocationChanged"},{"$ref":"#/components/schemas/CompanyStatusChanged"},{"$ref":"#/components/schemas/TechnologyAdded"},{"$ref":"#/components/schemas/CompanyPosted"},{"$ref":"#/components/schemas/CompanyPostedWithKeyword"},{"$ref":"#/components/schemas/FollowerCountGrowth"},{"$ref":"#/components/schemas/CompanyNameChanged"},{"$ref":"#/components/schemas/CompanyDescriptionChanged"},{"$ref":"#/components/schemas/CompanyWentInactive"},{"$ref":"#/components/schemas/EmployeeCountMilestone"},{"$ref":"#/components/schemas/NewOfficeLocation"},{"$ref":"#/components/schemas/CompanyLogoChanged"},{"$ref":"#/components/schemas/AcquiredCompany"},{"$ref":"#/components/schemas/NewInvestor"},{"$ref":"#/components/schemas/RecentlyHiredWithTitle"},{"$ref":"#/components/schemas/DepartmentSizeThreshold"}],"discriminator":{"propertyName":"type","mapping":{"headcount_crossed_threshold":"#/components/schemas/HeadcountCrossedThreshold","headcount_growth_percent":"#/components/schemas/HeadcountGrowthPercent","new_funding_round":"#/components/schemas/NewFundingRound","funding_stage_changed":"#/components/schemas/FundingStageChanged","job_posting_with_keyword":"#/components/schemas/JobPostingWithKeyword","job_posting_in_function":"#/components/schemas/JobPostingInFunction","news_with_keyword":"#/components/schemas/NewsWithKeyword","company_news":"#/components/schemas/CompanyNews","hq_location_changed":"#/components/schemas/HqLocationChanged","company_status_changed":"#/components/schemas/CompanyStatusChanged","technology_added":"#/components/schemas/TechnologyAdded","company_posted":"#/components/schemas/CompanyPosted","company_posted_with_keyword":"#/components/schemas/CompanyPostedWithKeyword","follower_count_growth":"#/components/schemas/FollowerCountGrowth","company_name_changed":"#/components/schemas/CompanyNameChanged","company_description_changed":"#/components/schemas/CompanyDescriptionChanged","company_went_inactive":"#/components/schemas/CompanyWentInactive","employee_count_milestone":"#/components/schemas/EmployeeCountMilestone","new_office_location":"#/components/schemas/NewOfficeLocation","company_logo_changed":"#/components/schemas/CompanyLogoChanged","acquired_company":"#/components/schemas/AcquiredCompany","new_investor":"#/components/schemas/NewInvestor","recently_hired_with_title":"#/components/schemas/RecentlyHiredWithTitle","department_size_threshold":"#/components/schemas/DepartmentSizeThreshold"}}},"maxItems":10,"description":"Add rules to the existing set without removing others. Cannot be used with trackingRules."},"removeRuleIds":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"Rule IDs to remove. Cannot be used with trackingRules."}},"required":["apiKey"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"companyCount":{"type":"integer","description":"Number of companies in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","companyCount","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/company-lists/{listId}/companies":{"put":{"operationId":"addTrackerCompanies","summary":"Add companies to tracker list","tags":["Tracker"],"description":"Add companies to a tracker list. Identify companies by LinkedIn URL, organization ID, or slug. At least one identifier is required per company.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"companies":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":["string","null"],"minLength":1,"description":"Full LinkedIn company URL"},"linkedinOrgId":{"type":["string","null"],"minLength":1,"description":"LinkedIn organization ID"},"linkedinSlug":{"type":["string","null"],"minLength":1,"description":"LinkedIn company slug"}}},"minItems":1,"maxItems":100,"description":"Companies to add. At least one identifier required per company."}},"required":["apiKey","companies"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"added":{"type":"integer","description":"Number of companies successfully added"},"skipped":{"type":"integer","description":"Number skipped (duplicates or invalid)"},"invalidCompanies":{"type":"array","items":{"type":"object","properties":{"index":{"type":"integer","description":"Index in the input array"},"reason":{"type":"string","description":"Why this company was skipped"}},"required":["index","reason"]},"description":"Details on any companies that could not be added"}},"required":["added","skipped","invalidCompanies"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"delete":{"operationId":"removeTrackerCompanies","summary":"Remove companies from tracker list","tags":["Tracker"],"description":"Remove companies from a company tracker list. Deactivates them so they are no longer monitored, but preserves their signal history. Uses the same identifier format as add-companies.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"companies":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":["string","null"],"minLength":1,"description":"Full LinkedIn company URL"},"linkedinOrgId":{"type":["string","null"],"minLength":1,"description":"LinkedIn organization ID"},"linkedinSlug":{"type":["string","null"],"minLength":1,"description":"LinkedIn company slug"}}},"minItems":1,"maxItems":100,"description":"Companies to remove. Uses the same identifier format as add-companies."}},"required":["companies"]}}}},"parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"removed":{"type":"integer","description":"Number of companies successfully deactivated"},"notFound":{"type":"integer","description":"Number of identifiers not found or already inactive"},"failedIdentifiers":{"type":"array","items":{"type":"object","properties":{"index":{"type":"integer","description":"Index in the input array"},"reason":{"type":"string","description":"Why this company could not be removed"}},"required":["index","reason"]},"description":"Details on identifiers that could not be removed"}},"required":["removed","notFound","failedIdentifiers"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/changes/{listId}":{"get":{"operationId":"listTrackerChanges","summary":"List tracker changes","tags":["Tracker"],"description":"List detected changes for a tracker list. All returned signals matched a tracking rule.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":["string","null"],"format":"date-time"},"in":"query","name":"since","description":"Only return signals observed after this timestamp"},{"schema":{"type":["string","null"]},"in":"query","name":"cursor","description":"Pagination cursor"},{"schema":{"type":"integer","minimum":1,"maximum":100,"default":50},"in":"query","name":"limit","description":"Number of results to return"},{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"changes":{"type":"array","items":{"$ref":"#/components/schemas/TrackerSignal"}},"cursor":{"type":["string","null"],"description":"Cursor for next page"},"hasMore":{"type":"boolean","description":"Whether more results exist"}},"required":["changes","cursor","hasMore"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/person-lists":{"post":{"operationId":"createTrackerPersonList","summary":"Create person tracker list","tags":["Tracker"],"description":"Create a new person tracker list. Add people to the list, and we will periodically check them for changes matching your tracking rule. Pricing: 2 credits per entity per refresh cycle. Volume discounts (50%+) are available for high-volume tracking (10,000+ entities). Contact sales for details.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":"string","minLength":1,"maxLength":200,"description":"Human-readable name for the tracker list"},"refreshIntervalDays":{"type":"integer","minimum":1,"maximum":30,"description":"How often to check tracked people for changes, in days"},"trackingRules":{"type":["array","null"],"items":{"oneOf":[{"$ref":"#/components/schemas/PersonChangedCompany"},{"$ref":"#/components/schemas/PersonTitleChanged"},{"$ref":"#/components/schemas/PersonStealthChanged"},{"$ref":"#/components/schemas/PersonOpenToWork"},{"$ref":"#/components/schemas/PersonIsHiring"},{"$ref":"#/components/schemas/PersonHeadlineChanged"},{"$ref":"#/components/schemas/PersonLocationChanged"},{"$ref":"#/components/schemas/PersonTagGained"},{"$ref":"#/components/schemas/PersonPosted"},{"$ref":"#/components/schemas/PersonPostedWithKeyword"},{"$ref":"#/components/schemas/PersonSkillsAdded"},{"$ref":"#/components/schemas/PersonGotPromoted"},{"$ref":"#/components/schemas/PersonStartedCompany"},{"$ref":"#/components/schemas/PersonEmploymentTypeChanged"},{"$ref":"#/components/schemas/PersonConnectionsMilestone"},{"$ref":"#/components/schemas/PersonFollowerMilestone"},{"$ref":"#/components/schemas/PersonSummaryChanged"},{"$ref":"#/components/schemas/PersonNewCertification"},{"$ref":"#/components/schemas/PersonBecameVerified"}],"discriminator":{"propertyName":"type","mapping":{"person_changed_company":"#/components/schemas/PersonChangedCompany","person_title_changed":"#/components/schemas/PersonTitleChanged","person_stealth_changed":"#/components/schemas/PersonStealthChanged","person_open_to_work":"#/components/schemas/PersonOpenToWork","person_is_hiring":"#/components/schemas/PersonIsHiring","person_headline_changed":"#/components/schemas/PersonHeadlineChanged","person_location_changed":"#/components/schemas/PersonLocationChanged","person_tag_gained":"#/components/schemas/PersonTagGained","person_posted":"#/components/schemas/PersonPosted","person_posted_with_keyword":"#/components/schemas/PersonPostedWithKeyword","person_skills_added":"#/components/schemas/PersonSkillsAdded","person_got_promoted":"#/components/schemas/PersonGotPromoted","person_started_company":"#/components/schemas/PersonStartedCompany","person_employment_type_changed":"#/components/schemas/PersonEmploymentTypeChanged","person_connections_milestone":"#/components/schemas/PersonConnectionsMilestone","person_follower_milestone":"#/components/schemas/PersonFollowerMilestone","person_summary_changed":"#/components/schemas/PersonSummaryChanged","person_new_certification":"#/components/schemas/PersonNewCertification","person_became_verified":"#/components/schemas/PersonBecameVerified"}}},"minItems":1,"maxItems":10,"description":"Tracking rules to evaluate against this list's entities. Multiple rules can be active simultaneously."}},"required":["apiKey","name","refreshIntervalDays"]}}}},"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"personCount":{"type":"integer","description":"Number of people in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","personCount","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"get":{"operationId":"listTrackerPersonLists","summary":"List person tracker lists","tags":["Tracker"],"description":"List all person tracker lists for your organization.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"lists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"personCount":{"type":"integer","description":"Number of people in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","personCount","createdAt"]}}},"required":["lists"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/person-lists/{listId}":{"get":{"operationId":"getTrackerPersonList","summary":"Get person tracker list","tags":["Tracker"],"description":"Get a single person tracker list by ID.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"personCount":{"type":"integer","description":"Number of people in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","personCount","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"delete":{"operationId":"deleteTrackerPersonList","summary":"Delete person tracker list","tags":["Tracker"],"description":"Archive a person tracker list. Stops all monitoring and deactivates all tracked people and rules on the list. Signal history is preserved for audit purposes.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"ID of the archived list"},"name":{"type":"string","description":"Name of the archived list"},"isArchived":{"type":"boolean","description":"List has been archived","enum":[true]},"isActive":{"type":"boolean","description":"Monitoring has been stopped","enum":[false]}},"required":["id","name","isArchived","isActive"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"patch":{"operationId":"updateTrackerPersonList","summary":"Update person tracker list","tags":["Tracker"],"description":"Update a person tracker list. Can change name, refresh interval, active status, or manage tracking rules. Supports replace-all (trackingRules) or granular (addRules/removeRuleIds) rule management — but not both in one request.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"name":{"type":["string","null"],"minLength":1,"maxLength":200,"description":"New name for the list"},"refreshIntervalDays":{"type":["integer","null"],"minimum":1,"maximum":30,"description":"New check interval in days"},"isActive":{"type":["boolean","null"],"description":"Pause or resume monitoring on the list"},"trackingRules":{"type":["array","null"],"items":{"oneOf":[{"$ref":"#/components/schemas/PersonChangedCompany"},{"$ref":"#/components/schemas/PersonTitleChanged"},{"$ref":"#/components/schemas/PersonStealthChanged"},{"$ref":"#/components/schemas/PersonOpenToWork"},{"$ref":"#/components/schemas/PersonIsHiring"},{"$ref":"#/components/schemas/PersonHeadlineChanged"},{"$ref":"#/components/schemas/PersonLocationChanged"},{"$ref":"#/components/schemas/PersonTagGained"},{"$ref":"#/components/schemas/PersonPosted"},{"$ref":"#/components/schemas/PersonPostedWithKeyword"},{"$ref":"#/components/schemas/PersonSkillsAdded"},{"$ref":"#/components/schemas/PersonGotPromoted"},{"$ref":"#/components/schemas/PersonStartedCompany"},{"$ref":"#/components/schemas/PersonEmploymentTypeChanged"},{"$ref":"#/components/schemas/PersonConnectionsMilestone"},{"$ref":"#/components/schemas/PersonFollowerMilestone"},{"$ref":"#/components/schemas/PersonSummaryChanged"},{"$ref":"#/components/schemas/PersonNewCertification"},{"$ref":"#/components/schemas/PersonBecameVerified"}],"discriminator":{"propertyName":"type","mapping":{"person_changed_company":"#/components/schemas/PersonChangedCompany","person_title_changed":"#/components/schemas/PersonTitleChanged","person_stealth_changed":"#/components/schemas/PersonStealthChanged","person_open_to_work":"#/components/schemas/PersonOpenToWork","person_is_hiring":"#/components/schemas/PersonIsHiring","person_headline_changed":"#/components/schemas/PersonHeadlineChanged","person_location_changed":"#/components/schemas/PersonLocationChanged","person_tag_gained":"#/components/schemas/PersonTagGained","person_posted":"#/components/schemas/PersonPosted","person_posted_with_keyword":"#/components/schemas/PersonPostedWithKeyword","person_skills_added":"#/components/schemas/PersonSkillsAdded","person_got_promoted":"#/components/schemas/PersonGotPromoted","person_started_company":"#/components/schemas/PersonStartedCompany","person_employment_type_changed":"#/components/schemas/PersonEmploymentTypeChanged","person_connections_milestone":"#/components/schemas/PersonConnectionsMilestone","person_follower_milestone":"#/components/schemas/PersonFollowerMilestone","person_summary_changed":"#/components/schemas/PersonSummaryChanged","person_new_certification":"#/components/schemas/PersonNewCertification","person_became_verified":"#/components/schemas/PersonBecameVerified"}}},"minItems":0,"maxItems":10,"description":"Replace ALL existing rules with this set. Pass empty array to clear all rules. Omit to leave unchanged. Cannot be used with addRules/removeRuleIds."},"addRules":{"type":["array","null"],"items":{"oneOf":[{"$ref":"#/components/schemas/PersonChangedCompany"},{"$ref":"#/components/schemas/PersonTitleChanged"},{"$ref":"#/components/schemas/PersonStealthChanged"},{"$ref":"#/components/schemas/PersonOpenToWork"},{"$ref":"#/components/schemas/PersonIsHiring"},{"$ref":"#/components/schemas/PersonHeadlineChanged"},{"$ref":"#/components/schemas/PersonLocationChanged"},{"$ref":"#/components/schemas/PersonTagGained"},{"$ref":"#/components/schemas/PersonPosted"},{"$ref":"#/components/schemas/PersonPostedWithKeyword"},{"$ref":"#/components/schemas/PersonSkillsAdded"},{"$ref":"#/components/schemas/PersonGotPromoted"},{"$ref":"#/components/schemas/PersonStartedCompany"},{"$ref":"#/components/schemas/PersonEmploymentTypeChanged"},{"$ref":"#/components/schemas/PersonConnectionsMilestone"},{"$ref":"#/components/schemas/PersonFollowerMilestone"},{"$ref":"#/components/schemas/PersonSummaryChanged"},{"$ref":"#/components/schemas/PersonNewCertification"},{"$ref":"#/components/schemas/PersonBecameVerified"}],"discriminator":{"propertyName":"type","mapping":{"person_changed_company":"#/components/schemas/PersonChangedCompany","person_title_changed":"#/components/schemas/PersonTitleChanged","person_stealth_changed":"#/components/schemas/PersonStealthChanged","person_open_to_work":"#/components/schemas/PersonOpenToWork","person_is_hiring":"#/components/schemas/PersonIsHiring","person_headline_changed":"#/components/schemas/PersonHeadlineChanged","person_location_changed":"#/components/schemas/PersonLocationChanged","person_tag_gained":"#/components/schemas/PersonTagGained","person_posted":"#/components/schemas/PersonPosted","person_posted_with_keyword":"#/components/schemas/PersonPostedWithKeyword","person_skills_added":"#/components/schemas/PersonSkillsAdded","person_got_promoted":"#/components/schemas/PersonGotPromoted","person_started_company":"#/components/schemas/PersonStartedCompany","person_employment_type_changed":"#/components/schemas/PersonEmploymentTypeChanged","person_connections_milestone":"#/components/schemas/PersonConnectionsMilestone","person_follower_milestone":"#/components/schemas/PersonFollowerMilestone","person_summary_changed":"#/components/schemas/PersonSummaryChanged","person_new_certification":"#/components/schemas/PersonNewCertification","person_became_verified":"#/components/schemas/PersonBecameVerified"}}},"maxItems":10,"description":"Add rules to the existing set without removing others. Cannot be used with trackingRules."},"removeRuleIds":{"type":["array","null"],"items":{"type":"string","minLength":1},"description":"Rule IDs to remove. Cannot be used with trackingRules."}},"required":["apiKey"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"Name of the list"},"refreshIntervalDays":{"type":"integer","description":"Check interval in days"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"isArchived":{"type":"boolean","description":"Whether the list is archived"},"personCount":{"type":"integer","description":"Number of people in this list"},"createdAt":{"type":"string","format":"date-time","description":"When the list was created"}},"required":["id","name","refreshIntervalDays","isActive","isArchived","personCount","createdAt"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/person-lists/{listId}/people":{"put":{"operationId":"addTrackerPeople","summary":"Add people to tracker list","tags":["Tracker"],"description":"Add people to a person tracker list. Identify people by LinkedIn URL, user ID, or slug. At least one identifier is required per person.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"people":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":["string","null"],"minLength":1,"description":"Full LinkedIn profile URL"},"linkedinUserId":{"type":["string","null"],"minLength":1,"description":"LinkedIn user ID"},"linkedinSlug":{"type":["string","null"],"minLength":1,"description":"LinkedIn profile slug"}}},"minItems":1,"maxItems":100,"description":"People to add. At least one identifier required per person."}},"required":["apiKey","people"]}}}},"parameters":[{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"added":{"type":"integer","description":"Number of people successfully added"},"skipped":{"type":"integer","description":"Number skipped (duplicates or invalid)"},"invalidPeople":{"type":"array","items":{"type":"object","properties":{"index":{"type":"integer","description":"Index in the input array"},"reason":{"type":"string","description":"Why this person was skipped"}},"required":["index","reason"]},"description":"Details on any people that could not be added"}},"required":["added","skipped","invalidPeople"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}},"delete":{"operationId":"removeTrackerPeople","summary":"Remove people from tracker list","tags":["Tracker"],"description":"Remove people from a person tracker list. Deactivates them so they are no longer monitored, but preserves their signal history. Uses the same identifier format as add-people.\n\n<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"people":{"type":"array","items":{"type":"object","properties":{"linkedinUrl":{"type":["string","null"],"minLength":1,"description":"Full LinkedIn profile URL"},"linkedinUserId":{"type":["string","null"],"minLength":1,"description":"LinkedIn user ID"},"linkedinSlug":{"type":["string","null"],"minLength":1,"description":"LinkedIn profile slug"}}},"minItems":1,"maxItems":100,"description":"People to remove. Uses the same identifier format as add-people."}},"required":["people"]}}}},"parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"},{"schema":{"type":"string","minLength":1},"in":"path","name":"listId","required":true,"description":"The unique ID of the tracker list."}],"x-rate-limit":{"max":60,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"removed":{"type":"integer","description":"Number of people successfully deactivated"},"notFound":{"type":"integer","description":"Number of identifiers not found or already inactive"},"failedIdentifiers":{"type":"array","items":{"type":"object","properties":{"index":{"type":"integer","description":"Index in the input array"},"reason":{"type":"string","description":"Why this person could not be removed"}},"required":["index","reason"]},"description":"Details on identifiers that could not be removed"}},"required":["removed","notFound","failedIdentifiers"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tracker/overview":{"get":{"operationId":"getTrackerOverview","summary":"Get tracker overview","tags":["Tracker"],"description":"Returns a single-call summary of all of your tracker lists, the rules attached to each, and a forecast of upcoming refreshes with the credits each refresh will cost. Useful for monitoring credit burn and seeing what's being tracked at a glance.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","parameters":[{"schema":{"type":"string"},"in":"query","name":"apiKey","required":true,"description":"Your Fiber API key"}],"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"FREE! No credits are charged for this API.","chargingMethod":"free"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"summary":{"type":"object","properties":{"totalCompanyLists":{"type":"integer","minimum":0,"description":"Active, non-archived company tracker lists for the organization."},"totalPersonLists":{"type":"integer","minimum":0,"description":"Active, non-archived person tracker lists for the organization."},"totalCompaniesTracked":{"type":"integer","minimum":0,"description":"Total active companies across all company lists."},"totalPeopleTracked":{"type":"integer","minimum":0,"description":"Total active people across all person lists."},"totalActiveRules":{"type":"integer","minimum":0,"description":"Active tracking rules across all lists."},"estimatedDailyCredits":{"type":"number","minimum":0,"description":"Amortized daily credit burn across all lists at the current entity counts and refresh cadences."},"estimatedMonthlyCredits":{"type":"number","minimum":0,"description":"Estimated 30-day credit burn at the current entity counts and refresh cadences."}},"required":["totalCompanyLists","totalPersonLists","totalCompaniesTracked","totalPeopleTracked","totalActiveRules","estimatedDailyCredits","estimatedMonthlyCredits"]},"companyLists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"List name"},"entityType":{"type":"string","enum":["company","person"],"description":"Entity type tracked by this list"},"refreshIntervalDays":{"type":"integer","description":"How often the list is checked, in days"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"entityCount":{"type":"integer","minimum":0,"description":"Number of active entities currently tracked in this list"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"nextRefreshAt":{"type":["string","null"],"format":"date-time","description":"ISO timestamp when at least one entity in this list becomes due for its next check. Null if the list has no active entities."},"estimatedCreditsPerRefresh":{"type":"number","minimum":0,"description":"Credits charged for a full refresh of this list at the org's current pricing (entityCount × per-entity cost)."}},"required":["id","name","entityType","refreshIntervalDays","isActive","entityCount","nextRefreshAt","estimatedCreditsPerRefresh"]},"description":"All active, non-archived company tracker lists with rules and refresh estimates."},"personLists":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Tracker list ID"},"name":{"type":"string","description":"List name"},"entityType":{"type":"string","enum":["company","person"],"description":"Entity type tracked by this list"},"refreshIntervalDays":{"type":"integer","description":"How often the list is checked, in days"},"isActive":{"type":"boolean","description":"Whether the list is actively being checked"},"entityCount":{"type":"integer","minimum":0,"description":"Number of active entities currently tracked in this list"},"trackingRules":{"type":["array","null"],"items":{"type":"object","properties":{"id":{"type":"string","description":"Unique rule ID. Use with removeRuleIds to delete a specific rule."},"type":{"type":"string","description":"Rule type slug (e.g. headcount_crossed_threshold, person_changed_company)"},"entityType":{"type":"string","enum":["company","person"],"description":"Whether this rule applies to company or person entities"},"lookbackDays":{"type":["integer","null"],"description":"If set, compare against a snapshot from approximately N days ago instead of the most recent prior snapshot."}},"required":["id","type","entityType"],"additionalProperties":true,"description":"A tracking rule with its full configuration. Contains all input fields plus a server-generated id."},"description":"Active tracking rules on this list, with IDs for granular management"},"nextRefreshAt":{"type":["string","null"],"format":"date-time","description":"ISO timestamp when at least one entity in this list becomes due for its next check. Null if the list has no active entities."},"estimatedCreditsPerRefresh":{"type":"number","minimum":0,"description":"Credits charged for a full refresh of this list at the org's current pricing (entityCount × per-entity cost)."}},"required":["id","name","entityType","refreshIntervalDays","isActive","entityCount","nextRefreshAt","estimatedCreditsPerRefresh"]},"description":"All active, non-archived person tracker lists with rules and refresh estimates."},"upcomingRefreshes":{"type":"array","items":{"type":"object","properties":{"listId":{"type":"string","description":"Tracker list ID"},"listName":{"type":"string","description":"List name"},"entityType":{"type":"string","enum":["company","person"],"description":"Entity type tracked by this list"},"refreshAt":{"type":"string","format":"date-time","description":"ISO timestamp when the next refresh of this list will run."},"entityCount":{"type":"integer","minimum":0,"description":"Number of entities in the list that will be refreshed."},"estimatedCredits":{"type":"number","minimum":0,"description":"Credits that will be charged for this refresh."}},"required":["listId","listName","entityType","refreshAt","entityCount","estimatedCredits"]},"description":"Next refreshes across all lists, sorted earliest first. Use this to forecast upcoming charges."}},"required":["summary","companyLists","personLists","upcomingRefreshes"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/profile":{"post":{"operationId":"tiktokProfile","summary":"Fetch TikTok user profile","tags":["TikTok"],"description":"Fetches profile information for a TikTok user including follower counts, bio, and account type.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"TikTok handle to look up. Accepts with or without a leading '@' (e.g. 'therock' or '@therock')."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialUserDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."},"followingCount":{"type":["number","null"],"description":"Number of accounts followed."},"videoCount":{"type":["number","null"],"description":"Total number of videos posted."},"totalLikeCount":{"type":["number","null"],"description":"Total number of likes received across all videos."},"isPrivate":{"type":["boolean","null"],"description":"Whether the account is private."},"externalUrl":{"type":["string","null"],"description":"Website URL from the profile (the 'link in bio')."}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/user-videos":{"post":{"operationId":"tiktokUserVideos","summary":"Fetch TikTok user videos","tags":["TikTok"],"description":"Fetches the latest videos for a TikTok user. Returns a paginated list of videos with engagement metrics. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"TikTok handle (with or without leading '@')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserPosts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique video identifier."},"caption":{"type":["string","null"],"description":"Video caption or description."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"shareCount":{"type":["number","null"],"description":"Number of shares."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"videoUrl":{"type":["string","null"],"description":"Direct URL to the TikTok video page."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the video was published."}}},"description":"List of videos for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["videos"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/user-followers":{"post":{"operationId":"tiktokUserFollowers","summary":"Fetch TikTok user followers","tags":["TikTok"],"description":"Fetches the followers of a TikTok user. Returns a paginated list. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"TikTok handle (with or without leading '@')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserFollowers"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."}}},"description":"List of followers for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["users"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/user-following":{"post":{"operationId":"tiktokUserFollowing","summary":"Fetch TikTok user following","tags":["TikTok"],"description":"Fetches the accounts that a TikTok user follows. Returns a paginated list. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"TikTok handle (with or without leading '@')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserFollowing"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."}}},"description":"List of accounts this user follows, for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["users"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/video-details":{"post":{"operationId":"tiktokVideoDetails","summary":"Fetch TikTok video details","tags":["TikTok"],"description":"Fetches detailed information about a TikTok video including engagement metrics and video metadata.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"videoUrl":{"type":"string","minLength":1,"description":"Full TikTok video URL (e.g. 'https://www.tiktok.com/@therock/video/1234567890')."}},"required":["apiKey","videoUrl"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique video identifier."},"caption":{"type":["string","null"],"description":"Video caption or description."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"shareCount":{"type":["number","null"],"description":"Number of shares."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"videoUrl":{"type":["string","null"],"description":"Direct URL to the TikTok video page."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the video was published."}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/video-comments":{"post":{"operationId":"tiktokVideoComments","summary":"Fetch TikTok video comments","tags":["TikTok"],"description":"Fetches comments for a TikTok video. Returns a paginated list of comments. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"videoUrl":{"type":"string","minLength":1,"description":"Full TikTok video URL (e.g. 'https://www.tiktok.com/@therock/video/1234567890')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","videoUrl"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostReplies"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"comments":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique comment identifier."},"text":{"type":["string","null"],"description":"Comment text."},"likeCount":{"type":["number","null"],"description":"Number of likes on the comment."},"replyCount":{"type":["number","null"],"description":"Number of replies to the comment."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the comment was posted."},"user":{"type":["object","null"],"properties":{"id":{"type":["string","null"],"description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."}},"description":"The user who posted the comment."}}},"description":"List of comments for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["comments"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/comment-replies":{"post":{"operationId":"tiktokCommentReplies","summary":"Fetch TikTok comment replies","tags":["TikTok"],"description":"Fetches replies to a TikTok comment. Returns a paginated list of replies. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"commentId":{"type":"string","minLength":1,"description":"Unique comment ID to fetch replies for."},"videoUrl":{"type":"string","minLength":1,"description":"Full TikTok video URL the comment belongs to (e.g. 'https://www.tiktok.com/@therock/video/1234567890')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","commentId","videoUrl"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostReplies"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"comments":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique comment identifier."},"text":{"type":["string","null"],"description":"Comment text."},"likeCount":{"type":["number","null"],"description":"Number of likes on the comment."},"replyCount":{"type":["number","null"],"description":"Number of replies to the comment."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the comment was posted."},"user":{"type":["object","null"],"properties":{"id":{"type":["string","null"],"description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."}},"description":"The user who posted the comment."}}},"description":"List of replies for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["comments"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/video-transcript":{"post":{"operationId":"tiktokVideoTranscript","summary":"Fetch TikTok video transcript","tags":["TikTok"],"description":"Fetches the spoken word transcript for a TikTok video, broken into timed segments.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"videoUrl":{"type":"string","minLength":1,"description":"Full TikTok video URL (e.g. 'https://www.tiktok.com/@therock/video/1234567890')."}},"required":["apiKey","videoUrl"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"segments":{"type":"array","items":{"type":"object","properties":{"text":{"type":"string","description":"Transcript segment text."},"startSeconds":{"type":["number","null"],"description":"Start time of this segment in seconds from the beginning of the video."},"durationSeconds":{"type":["number","null"],"description":"Duration of this segment in seconds."}},"required":["text"]},"description":"Ordered list of transcript segments."},"language":{"type":["object","null"],"properties":{"code":{"type":"string","description":"BCP-47 language code (e.g. 'en' or 'pt-BR')."},"name":{"type":"string","description":"Human-readable language name (e.g. 'English' or 'Portuguese (Brazil)')."}},"required":["code","name"],"description":"Language of the transcript, if detected."}},"required":["segments"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/search-users":{"post":{"operationId":"tiktokSearchUsers","summary":"Search TikTok users","tags":["TikTok"],"description":"Searches for TikTok users by name or keyword. Returns a paginated list of matching accounts. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Search query to find TikTok users (e.g. 'Dwayne Johnson')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."}}},"description":"List of users matching the search query, for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["users"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/search-keyword":{"post":{"operationId":"tiktokSearchKeyword","summary":"Search TikTok videos by keyword","tags":["TikTok"],"description":"Searches for TikTok videos by keyword or phrase. Returns a paginated list of matching videos. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Keyword or phrase to search for TikTok videos (e.g. 'fitness motivation')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique video identifier."},"caption":{"type":["string","null"],"description":"Video caption or description."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"shareCount":{"type":["number","null"],"description":"Number of shares."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"videoUrl":{"type":["string","null"],"description":"Direct URL to the TikTok video page."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the video was published."}}},"description":"List of videos matching the keyword search, for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["videos"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/search-hashtag":{"post":{"operationId":"tiktokSearchHashtag","summary":"Search TikTok hashtag videos","tags":["TikTok"],"description":"Fetches videos for a TikTok hashtag along with hashtag metadata. Returns a paginated list of videos. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Hashtag to search for (with or without leading '#', e.g. 'fitness' or '#fitness'). The '#' is stripped automatically."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique video identifier."},"caption":{"type":["string","null"],"description":"Video caption or description."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"shareCount":{"type":["number","null"],"description":"Number of shares."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"videoUrl":{"type":["string","null"],"description":"Direct URL to the TikTok video page."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the video was published."}}},"description":"List of videos for this hashtag, for this page."},"hashtag":{"type":["object","null"],"properties":{"id":{"type":["string","null"],"description":"Unique hashtag identifier."},"name":{"type":["string","null"],"description":"Hashtag name (without '#')."},"totalViewCount":{"type":["number","null"],"description":"Total number of views across all videos with this hashtag."},"videoCount":{"type":["number","null"],"description":"Total number of videos using this hashtag."}},"description":"Metadata about the hashtag."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["videos"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/unified-search":{"post":{"operationId":"tiktokUnifiedSearch","summary":"TikTok unified search","tags":["TikTok"],"description":"Searches TikTok and returns both matching videos and user accounts for a query in a single response. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Query string for a unified search returning both videos and users (e.g. 'cooking')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique video identifier."},"caption":{"type":["string","null"],"description":"Video caption or description."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"shareCount":{"type":["number","null"],"description":"Number of shares."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"videoUrl":{"type":["string","null"],"description":"Direct URL to the TikTok video page."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the video was published."}}},"description":"List of videos from the unified search results, for this page."},"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."}}},"description":"List of users from the unified search results, for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["videos","users"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/popular-creators":{"post":{"operationId":"tiktokPopularCreators","summary":"Fetch popular TikTok creators","tags":["TikTok"],"description":"Fetches a list of popular TikTok creators. Optionally filter by country and sort order.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"country":{"type":["string","null"],"enum":["ARE","AUS","BRA","CAN","DEU","EGY","ESP","FRA","GBR","IDN","ISR","ITA","JPN","KOR","MYS","PHL","RUS","SAU","SGP","THA","TUR","TWN","USA","VNM",null],"description":"ISO 3166-1 alpha-3 country code to filter by (e.g. 'USA'). Omit for global results."},"sort":{"type":["string","null"],"enum":["engagement","follower","average_views",null],"description":"Sort results in descending order. Omit for default ranking."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"creators":{"type":"array","items":{"type":"object","properties":{"handle":{"type":["string","null"],"description":"TikTok handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"totalLikeCount":{"type":["number","null"],"description":"Total number of likes received across all videos."}}},"description":"List of popular creators."}},"required":["creators"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/popular-songs":{"post":{"operationId":"tiktokPopularSongs","summary":"Fetch popular TikTok songs","tags":["TikTok"],"description":"Fetches a list of currently popular songs/sounds on TikTok.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"songs":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique song identifier."},"title":{"type":["string","null"],"description":"Song title."},"artist":{"type":["string","null"],"description":"Artist or creator name."},"durationSeconds":{"type":["number","null"],"description":"Song duration in seconds."},"coverImageUrl":{"type":["string","null"],"description":"URL of the song cover image."},"videoCount":{"type":["number","null"],"description":"Number of TikTok videos that use this song as audio."}}},"description":"List of popular songs."}},"required":["songs"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/trending-feed":{"post":{"operationId":"tiktokTrendingFeed","summary":"Fetch TikTok trending feed","tags":["TikTok"],"description":"Fetches the current TikTok trending feed. Returns a paginated list of trending videos. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique video identifier."},"caption":{"type":["string","null"],"description":"Video caption or description."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"shareCount":{"type":["number","null"],"description":"Number of shares."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"videoUrl":{"type":["string","null"],"description":"Direct URL to the TikTok video page."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the video was published."}}},"description":"List of trending videos for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["videos"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/song-details":{"post":{"operationId":"tiktokSongDetails","summary":"Fetch TikTok song details","tags":["TikTok"],"description":"Fetches details about a TikTok song/sound including title, artist, and usage statistics.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"songUrl":{"type":"string","minLength":1,"description":"Full TikTok music/song URL (e.g. 'https://www.tiktok.com/music/song-title-7439295283975702544')."}},"required":["apiKey","songUrl"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique song identifier."},"title":{"type":["string","null"],"description":"Song title."},"artist":{"type":["string","null"],"description":"Artist or creator name."},"durationSeconds":{"type":["number","null"],"description":"Song duration in seconds."},"coverImageUrl":{"type":["string","null"],"description":"URL of the song cover image."},"videoCount":{"type":["number","null"],"description":"Number of TikTok videos that use this song as audio."}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/tiktok/song-videos":{"post":{"operationId":"tiktokSongVideos","summary":"Fetch TikTok videos using a song","tags":["TikTok"],"description":"Fetches TikTok videos that use a specific song/sound. Returns a paginated list. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 30 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"songUrl":{"type":"string","minLength":1,"description":"Full TikTok music/song URL (e.g. 'https://www.tiktok.com/music/song-title-7439295283975702544')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","songUrl"]}}}},"x-rate-limit":{"max":30,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"videos":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Unique video identifier."},"caption":{"type":["string","null"],"description":"Video caption or description."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"shareCount":{"type":["number","null"],"description":"Number of shares."},"viewCount":{"type":["number","null"],"description":"Number of views."},"durationSeconds":{"type":["number","null"],"description":"Video duration in seconds."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the video thumbnail."},"videoUrl":{"type":["string","null"],"description":"Direct URL to the TikTok video page."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the video was published."}}},"description":"List of videos using this song, for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["videos"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/reddit/subreddit/posts":{"post":{"operationId":"redditSubredditPosts","summary":"List subreddit posts","tags":["Reddit"],"description":"List posts from a subreddit, optionally filtered by sort order and timeframe. Returns a paginated list of posts. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"subreddit":{"type":"string","minLength":1,"description":"Subreddit name (e.g. 'AskReddit'), r/ prefix form (e.g. 'r/AskReddit'), or full subreddit URL."},"sort":{"type":"string","enum":["best","hot","new","top","rising"],"default":"hot","description":"Sort order for subreddit posts."},"timeframe":{"type":"string","enum":["all","day","week","month","year"],"default":"all","description":"Time window for filtering. Only applies when `sort` is 'top'; ignored for other sort modes (which are inherently time-ordered)."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","subreddit"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Stable Reddit post identifier (e.g. `ablzuq`). Use this as the primary key when storing posts in a database. Pass as `t3_<id>` to `/reddit/post/comments` to fetch comments for this post."},"title":{"type":["string","null"],"description":"Post title."},"author":{"type":["string","null"],"description":"Author username."},"subreddit":{"type":["string","null"],"description":"Subreddit name."},"bodyText":{"type":["string","null"],"description":"Post body text."},"url":{"type":["string","null"],"description":"Content URL. For link posts this is the external URL the post points at; for text and media posts it is the post's permalink on Reddit."},"permalink":{"type":["string","null"],"description":"Reddit discussion URL. Always points at the post's comments page on reddit.com regardless of post type."},"score":{"type":["number","null"],"description":"Net vote score (upvotes minus downvotes, subject to Reddit vote fuzzing)."},"upvoteRatio":{"type":["number","null"],"minimum":0,"maximum":1,"description":"Ratio of upvotes to total votes (0 to 1)."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"thumbnailUrl":{"type":["string","null"],"description":"Thumbnail URL when available."},"publishedAt":{"type":["string","null"],"description":"Publication timestamp in ISO 8601 format."},"isVideo":{"type":["boolean","null"],"description":"True when the post contains video media."},"isOver18":{"type":["boolean","null"],"description":"True when the post is marked NSFW."},"isSpoiler":{"type":["boolean","null"],"description":"True when the post is marked as a spoiler."}},"required":["id"]},"description":"List of subreddit posts."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if no more pages."}},"required":["posts"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/reddit/subreddit/search":{"post":{"operationId":"redditSubredditSearch","summary":"Search within a subreddit","tags":["Reddit"],"description":"Search posts within a subreddit by query, optionally filtered by sort order and timeframe. Returns a paginated list of posts. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"subreddit":{"type":"string","minLength":1,"description":"Subreddit name (e.g. 'AskReddit'), r/ prefix form (e.g. 'r/AskReddit'), or full subreddit URL."},"query":{"type":"string","minLength":1,"description":"Search query."},"sort":{"type":"string","enum":["relevance","hot","top","new","comment_count"],"default":"relevance","description":"Sort order for subreddit search results."},"timeframe":{"type":"string","enum":["all","day","week","month","year"],"default":"all","description":"Time window for subreddit search filtering."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","subreddit","query"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Stable Reddit post identifier (e.g. `ablzuq`). Use this as the primary key when storing posts in a database. Pass as `t3_<id>` to `/reddit/post/comments` to fetch comments for this post."},"title":{"type":["string","null"],"description":"Post title."},"author":{"type":["string","null"],"description":"Author username."},"subreddit":{"type":["string","null"],"description":"Subreddit name."},"bodyText":{"type":["string","null"],"description":"Post body text."},"url":{"type":["string","null"],"description":"Content URL. For link posts this is the external URL the post points at; for text and media posts it is the post's permalink on Reddit."},"permalink":{"type":["string","null"],"description":"Reddit discussion URL. Always points at the post's comments page on reddit.com regardless of post type."},"score":{"type":["number","null"],"description":"Net vote score (upvotes minus downvotes, subject to Reddit vote fuzzing)."},"upvoteRatio":{"type":["number","null"],"minimum":0,"maximum":1,"description":"Ratio of upvotes to total votes (0 to 1)."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"thumbnailUrl":{"type":["string","null"],"description":"Thumbnail URL when available."},"publishedAt":{"type":["string","null"],"description":"Publication timestamp in ISO 8601 format."},"isVideo":{"type":["boolean","null"],"description":"True when the post contains video media."},"isOver18":{"type":["boolean","null"],"description":"True when the post is marked NSFW."},"isSpoiler":{"type":["boolean","null"],"description":"True when the post is marked as a spoiler."}},"required":["id"]},"description":"List of posts matching the subreddit query."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if no more pages."}},"required":["posts"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/reddit/post/comments":{"post":{"operationId":"redditPostComments","summary":"Fetch post comments","tags":["Reddit"],"description":"Fetch comments for a Reddit post by URL or `t3_<id>` identifier. Returns the parent post (when available) and a paginated, depth-first flat list of comments that includes nested replies. Each entry's `parentCommentId` is null for top-level comments or points at the parent comment for replies; group on `parentCommentId` to rebuild the thread tree. Use the `nextPageToken` field from the response to retrieve subsequent pages of top-level comments (their nested replies come along automatically).\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"postUrlOrId":{"type":"string","minLength":1,"description":"Full Reddit post URL/permalink or post ID (e.g. 't3_ablzuq')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","postUrlOrId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostReplies"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"post":{"type":["object","null"],"properties":{"id":{"type":"string","description":"Stable Reddit post identifier (e.g. `ablzuq`). Use this as the primary key when storing posts in a database. Pass as `t3_<id>` to `/reddit/post/comments` to fetch comments for this post."},"title":{"type":["string","null"],"description":"Post title."},"author":{"type":["string","null"],"description":"Author username."},"subreddit":{"type":["string","null"],"description":"Subreddit name."},"bodyText":{"type":["string","null"],"description":"Post body text."},"url":{"type":["string","null"],"description":"Content URL. For link posts this is the external URL the post points at; for text and media posts it is the post's permalink on Reddit."},"permalink":{"type":["string","null"],"description":"Reddit discussion URL. Always points at the post's comments page on reddit.com regardless of post type."},"score":{"type":["number","null"],"description":"Net vote score (upvotes minus downvotes, subject to Reddit vote fuzzing)."},"upvoteRatio":{"type":["number","null"],"minimum":0,"maximum":1,"description":"Ratio of upvotes to total votes (0 to 1)."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"thumbnailUrl":{"type":["string","null"],"description":"Thumbnail URL when available."},"publishedAt":{"type":["string","null"],"description":"Publication timestamp in ISO 8601 format."},"isVideo":{"type":["boolean","null"],"description":"True when the post contains video media."},"isOver18":{"type":["boolean","null"],"description":"True when the post is marked NSFW."},"isSpoiler":{"type":["boolean","null"],"description":"True when the post is marked as a spoiler."}},"required":["id"],"description":"Post metadata for the requested comment thread."},"comments":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Stable Reddit comment identifier (e.g. `ed1czme`). Use this as the primary key when storing comments in a database."},"parentCommentId":{"type":["string","null"],"description":"Parent comment ID when this entry is a reply to another comment. Null for top-level comments (whose parent is the post). Use this field to rebuild the thread tree by grouping comments on `parentCommentId`."},"author":{"type":["string","null"],"description":"Comment author username."},"bodyText":{"type":["string","null"],"description":"Comment body text."},"score":{"type":["number","null"],"description":"Net vote score (upvotes minus downvotes, subject to Reddit vote fuzzing)."},"publishedAt":{"type":["string","null"],"description":"Comment timestamp in ISO 8601 format."},"replyCount":{"type":["number","null"],"description":"Total number of direct replies on this comment. May exceed the number of reply entries actually present in `comments[]` when some replies are collapsed by Reddit and not included in the current page."},"permalink":{"type":["string","null"],"description":"Canonical Reddit permalink for the comment."}},"required":["id"]},"description":"Flat list of comments returned for the post, including replies. Each entry's `parentCommentId` is null for top-level comments and points at the parent comment's `id` for replies. The list is depth-first ordered (each top-level comment is followed by its descendants), so customers who want a tree can group on `parentCommentId`."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Token to retrieve the next page of top-level comments (their nested replies are included automatically). Pass as `nextPageToken` in the next request. Null if no more pages."}},"required":["comments"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/reddit/search":{"post":{"operationId":"redditSearch","summary":"Search Reddit posts","tags":["Reddit"],"description":"Search Reddit posts across all subreddits by query, optionally filtered by sort order and timeframe. Returns a paginated list of posts. Use the `nextPageToken` field from the response to retrieve subsequent pages. Queries with no matching posts return an empty list and are not charged credits.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Search query."},"sort":{"type":"string","enum":["relevance","new","top","comment_count"],"default":"relevance","description":"Sort order for global Reddit post search."},"timeframe":{"type":"string","enum":["all","day","week","month","year"],"default":"all","description":"Time window for global search filtering."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Stable Reddit post identifier (e.g. `ablzuq`). Use this as the primary key when storing posts in a database. Pass as `t3_<id>` to `/reddit/post/comments` to fetch comments for this post."},"title":{"type":["string","null"],"description":"Post title."},"author":{"type":["string","null"],"description":"Author username."},"subreddit":{"type":["string","null"],"description":"Subreddit name."},"bodyText":{"type":["string","null"],"description":"Post body text."},"url":{"type":["string","null"],"description":"Content URL. For link posts this is the external URL the post points at; for text and media posts it is the post's permalink on Reddit."},"permalink":{"type":["string","null"],"description":"Reddit discussion URL. Always points at the post's comments page on reddit.com regardless of post type."},"score":{"type":["number","null"],"description":"Net vote score (upvotes minus downvotes, subject to Reddit vote fuzzing)."},"upvoteRatio":{"type":["number","null"],"minimum":0,"maximum":1,"description":"Ratio of upvotes to total votes (0 to 1)."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"thumbnailUrl":{"type":["string","null"],"description":"Thumbnail URL when available."},"publishedAt":{"type":["string","null"],"description":"Publication timestamp in ISO 8601 format."},"isVideo":{"type":["boolean","null"],"description":"True when the post contains video media."},"isOver18":{"type":["boolean","null"],"description":"True when the post is marked NSFW."},"isSpoiler":{"type":["boolean","null"],"description":"True when the post is marked as a spoiler."}},"required":["id"]},"description":"Posts matching the global Reddit query."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if no more pages."}},"required":["posts"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/instagram/profile":{"post":{"operationId":"instagramProfile","summary":"Fetch Instagram user profile","tags":["Instagram"],"description":"Fetches profile information for an Instagram user including follower counts, bio, and account type.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Instagram handle to look up. Accepts with or without a leading '@' (e.g. 'natgeo' or '@natgeo')."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialUserDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"Instagram handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"followingCount":{"type":["number","null"],"description":"Number of accounts followed."},"postCount":{"type":["number","null"],"description":"Total number of posts."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."},"isPrivate":{"type":["boolean","null"],"description":"Whether the account is private."},"isBusinessAccount":{"type":["boolean","null"],"description":"Whether this is a business account."},"businessCategory":{"type":["string","null"],"description":"Business category (e.g. 'Media/News Company'). Null for personal accounts."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"externalUrl":{"type":["string","null"],"description":"Website URL from the profile (the 'link in bio')."}},"required":["id"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/instagram/user-posts":{"post":{"operationId":"instagramUserPosts","summary":"Fetch Instagram user posts","tags":["Instagram"],"description":"Fetches the latest posts for an Instagram user. Returns a paginated list of posts with engagement metrics. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Instagram handle (with or without leading '@')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserPosts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"posts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Unique post identifier."},"shortcode":{"type":["string","null"],"description":"Post shortcode — the unique identifier from the URL. For example, in 'https://www.instagram.com/p/DVoDVg5DkXM/', the shortcode is 'DVoDVg5DkXM'."},"caption":{"type":["string","null"],"description":"Post caption text."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"playCount":{"type":["number","null"],"description":"Number of plays or views (video/reel only)."},"isVideo":{"type":"boolean","description":"True if the post is a video or reel. False if it is an image."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the post image or video thumbnail."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the post was published."}},"required":["id","isVideo"]},"description":"List of posts for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["posts"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/instagram/user-reels":{"post":{"operationId":"instagramUserReels","summary":"Fetch Instagram user reels","tags":["Instagram"],"description":"Fetches the latest reels for an Instagram user. Returns a paginated list of reels with engagement metrics. Use the `nextPageToken` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Instagram handle (with or without leading '@')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserPosts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"reels":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Unique post identifier."},"shortcode":{"type":["string","null"],"description":"Post shortcode — the unique identifier from the URL. For example, in 'https://www.instagram.com/p/DVoDVg5DkXM/', the shortcode is 'DVoDVg5DkXM'."},"caption":{"type":["string","null"],"description":"Post caption text."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"playCount":{"type":["number","null"],"description":"Number of plays or views (video/reel only)."},"isVideo":{"type":"boolean","description":"True if the post is a video or reel. False if it is an image."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the post image or video thumbnail."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the post was published."}},"required":["id","isVideo"]},"description":"List of reels for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["reels"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/instagram/post-details":{"post":{"operationId":"instagramPostDetails","summary":"Fetch Instagram post details","tags":["Instagram"],"description":"Fetches details for a single Instagram post including caption, like count, and media URL. Accepts a full post URL (e.g. 'https://www.instagram.com/p/DVoDVg5DkXM/') or a bare shortcode (e.g. 'DVoDVg5DkXM').\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"postUrl":{"type":"string","minLength":1,"description":"Full Instagram post URL (e.g. 'https://www.instagram.com/p/DVoDVg5DkXM/') or shortcode (e.g. 'DVoDVg5DkXM')."}},"required":["apiKey","postUrl"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":"string","description":"Unique post identifier."},"shortcode":{"type":["string","null"],"description":"Post shortcode — the unique identifier from the URL. For example, in 'https://www.instagram.com/p/DVoDVg5DkXM/', the shortcode is 'DVoDVg5DkXM'."},"caption":{"type":["string","null"],"description":"Post caption text."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"commentCount":{"type":["number","null"],"description":"Number of comments."},"playCount":{"type":["number","null"],"description":"Number of plays or views (video/reel only)."},"isVideo":{"type":"boolean","description":"True if the post is a video or reel. False if it is an image."},"thumbnailUrl":{"type":["string","null"],"description":"URL of the post image or video thumbnail."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the post was published."}},"required":["id","isVideo"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/instagram/post-comments":{"post":{"operationId":"instagramPostComments","summary":"Fetch Instagram post comments","tags":["Instagram"],"description":"Fetches comments for an Instagram post. Returns a paginated list. Use the `nextPageToken` field from the response to retrieve subsequent pages. Accepts a full post URL (e.g. 'https://www.instagram.com/p/DVoDVg5DkXM/') or a bare shortcode (e.g. 'DVoDVg5DkXM').\n\n<span>⚡ <strong>Rate limit:</strong> 10 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"postUrl":{"type":"string","minLength":1,"description":"Full Instagram post URL (e.g. 'https://www.instagram.com/p/DVoDVg5DkXM/') or shortcode (e.g. 'DVoDVg5DkXM')."},"nextPageToken":{"type":["string","null"],"minLength":1,"description":"Pagination token from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","postUrl"]}}}},"x-rate-limit":{"max":10,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostReplies"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"comments":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Unique comment identifier."},"text":{"type":["string","null"],"description":"Comment text."},"publishedAt":{"type":["string","null"],"description":"ISO 8601 timestamp of when the comment was posted."},"user":{"type":["object","null"],"properties":{"id":{"type":"string","description":"Unique user identifier."},"handle":{"type":["string","null"],"description":"Instagram handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"isVerified":{"type":["boolean","null"],"description":"Whether the account is verified."}},"required":["id"],"description":"The user who posted the comment."}},"required":["id"]},"description":"List of comments for this page."},"nextPageToken":{"type":["string","null"],"description":"Token to retrieve the next page. Pass as `nextPageToken` in the next request. Null if there are no more pages."}},"required":["comments"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/profile":{"post":{"operationId":"twitterProfile","summary":"Fetch Twitter/X user profile","tags":["Social media"],"description":"Fetches the public profile for a Twitter/X user by handle. Returns follower/following counts, bio, verification status, and account metadata.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Twitter/X handle to look up. Accepts with or without a leading '@' (e.g. 'elonmusk' or '@elonmusk')."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialUserDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric user ID."},"handle":{"type":["string","null"],"description":"Twitter/X handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio / description."},"location":{"type":["string","null"],"description":"Location as entered on profile."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."},"bannerImageUrl":{"type":["string","null"],"description":"URL of the profile banner image."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"followingCount":{"type":["number","null"],"description":"Number of accounts followed."},"tweetCount":{"type":["number","null"],"description":"Total number of tweets / posts."},"isVerified":{"type":["boolean","null"],"description":"Legacy verified status."},"isBlueVerified":{"type":["boolean","null"],"description":"Twitter Blue / X Premium verified status."},"createdAt":{"type":["string","null"],"description":"When the account was created."},"externalUrl":{"type":["string","null"],"description":"External URL linked in the profile."}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/user-tweets":{"post":{"operationId":"twitterUserTweets","summary":"Fetch Twitter/X user tweets","tags":["Social media"],"description":"Fetches the latest tweets for a Twitter/X user. Returns a paginated list of tweets with engagement metrics. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Twitter/X handle to fetch tweets for. Accepts with or without a leading '@' (e.g. 'elonmusk' or '@elonmusk')."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page of tweets. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserPosts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric tweet ID."},"text":{"type":["string","null"],"description":"Full tweet text."},"authorId":{"type":["string","null"],"description":"Numeric user ID of the tweet author."},"handle":{"type":["string","null"],"description":"Twitter/X handle of the tweet author (without '@')."},"displayName":{"type":["string","null"],"description":"Display name of the tweet author."},"createdAt":{"type":["string","null"],"description":"When the tweet was created."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"replyCount":{"type":["number","null"],"description":"Number of replies."},"retweetCount":{"type":["number","null"],"description":"Number of retweets."},"quoteCount":{"type":["number","null"],"description":"Number of quote tweets."},"viewCount":{"type":["number","null"],"description":"Number of views."},"bookmarkCount":{"type":["number","null"],"description":"Number of bookmarks."},"isRetweet":{"type":["boolean","null"],"description":"Whether this tweet is a retweet."},"isReply":{"type":["boolean","null"],"description":"Whether this tweet is a reply to another tweet."},"lang":{"type":["string","null"],"description":"BCP-47 language code detected for the tweet (e.g. 'en' for English, 'es' for Spanish)."}}},"description":"List of tweets for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page of tweets. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["tweets"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/user-followers":{"post":{"operationId":"twitterUserFollowers","summary":"Fetch Twitter/X user followers","tags":["Social media"],"description":"Fetches a page of followers for a Twitter/X user. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Twitter/X handle to fetch followers for. Accepts with or without a leading '@'."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page of followers. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserFollowers"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric user ID."},"handle":{"type":["string","null"],"description":"Twitter/X handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio / description."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"isVerified":{"type":["boolean","null"],"description":"Legacy verified status."},"isBlueVerified":{"type":["boolean","null"],"description":"Twitter Blue / X Premium verified status."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."}}},"description":"List of followers for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page of followers. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["users"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/user-following":{"post":{"operationId":"twitterUserFollowing","summary":"Fetch Twitter/X user following","tags":["Social media"],"description":"Fetches a page of accounts a Twitter/X user follows. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Twitter/X handle to fetch following accounts for. Accepts with or without a leading '@'."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserFollowing"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric user ID."},"handle":{"type":["string","null"],"description":"Twitter/X handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio / description."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"isVerified":{"type":["boolean","null"],"description":"Legacy verified status."},"isBlueVerified":{"type":["boolean","null"],"description":"Twitter Blue / X Premium verified status."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."}}},"description":"List of accounts this user follows, for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["users"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/tweet-details":{"post":{"operationId":"twitterTweetDetails","summary":"Fetch Twitter/X tweet details","tags":["Social media"],"description":"Fetches details for a single tweet by its numeric ID. Returns full text, engagement metrics (likes, retweets, replies, views), and metadata.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per request&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"tweetId":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"Numeric tweet ID to fetch (e.g. '1234567890123456789'). Must contain only digits."}},"required":["apiKey","tweetId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per request","variableCosts":[{"credits":2,"perUnit":"request","operation":"socialPostDetails"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric tweet ID."},"text":{"type":["string","null"],"description":"Full tweet text."},"authorId":{"type":["string","null"],"description":"Numeric user ID of the tweet author."},"handle":{"type":["string","null"],"description":"Twitter/X handle of the tweet author (without '@')."},"displayName":{"type":["string","null"],"description":"Display name of the tweet author."},"createdAt":{"type":["string","null"],"description":"When the tweet was created."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"replyCount":{"type":["number","null"],"description":"Number of replies."},"retweetCount":{"type":["number","null"],"description":"Number of retweets."},"quoteCount":{"type":["number","null"],"description":"Number of quote tweets."},"viewCount":{"type":["number","null"],"description":"Number of views."},"bookmarkCount":{"type":["number","null"],"description":"Number of bookmarks."},"isRetweet":{"type":["boolean","null"],"description":"Whether this tweet is a retweet."},"isReply":{"type":["boolean","null"],"description":"Whether this tweet is a reply to another tweet."},"lang":{"type":["string","null"],"description":"BCP-47 language code detected for the tweet (e.g. 'en' for English, 'es' for Spanish)."}}},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/tweet-replies":{"post":{"operationId":"twitterTweetReplies","summary":"Fetch Twitter/X tweet replies","tags":["Social media"],"description":"Fetches a page of replies to a tweet. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"tweetId":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"Numeric tweet ID to fetch replies for (e.g. '1234567890123456789'). Must contain only digits."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page of replies. Omit for the first page."}},"required":["apiKey","tweetId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostReplies"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric tweet ID."},"text":{"type":["string","null"],"description":"Full tweet text."},"authorId":{"type":["string","null"],"description":"Numeric user ID of the tweet author."},"handle":{"type":["string","null"],"description":"Twitter/X handle of the tweet author (without '@')."},"displayName":{"type":["string","null"],"description":"Display name of the tweet author."},"createdAt":{"type":["string","null"],"description":"When the tweet was created."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"replyCount":{"type":["number","null"],"description":"Number of replies."},"retweetCount":{"type":["number","null"],"description":"Number of retweets."},"quoteCount":{"type":["number","null"],"description":"Number of quote tweets."},"viewCount":{"type":["number","null"],"description":"Number of views."},"bookmarkCount":{"type":["number","null"],"description":"Number of bookmarks."},"isRetweet":{"type":["boolean","null"],"description":"Whether this tweet is a retweet."},"isReply":{"type":["boolean","null"],"description":"Whether this tweet is a reply to another tweet."},"lang":{"type":["string","null"],"description":"BCP-47 language code detected for the tweet (e.g. 'en' for English, 'es' for Spanish)."}}},"description":"List of reply tweets for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page of replies. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["tweets"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/tweet-quotes":{"post":{"operationId":"twitterTweetQuotes","summary":"Fetch Twitter/X tweet quote tweets","tags":["Social media"],"description":"Fetches a page of quote tweets for a tweet. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"tweetId":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"Numeric tweet ID to fetch quote tweets for (e.g. '1234567890123456789'). Must contain only digits."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page of quote tweets. Omit for the first page."}},"required":["apiKey","tweetId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostQuotes"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric tweet ID."},"text":{"type":["string","null"],"description":"Full tweet text."},"authorId":{"type":["string","null"],"description":"Numeric user ID of the tweet author."},"handle":{"type":["string","null"],"description":"Twitter/X handle of the tweet author (without '@')."},"displayName":{"type":["string","null"],"description":"Display name of the tweet author."},"createdAt":{"type":["string","null"],"description":"When the tweet was created."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"replyCount":{"type":["number","null"],"description":"Number of replies."},"retweetCount":{"type":["number","null"],"description":"Number of retweets."},"quoteCount":{"type":["number","null"],"description":"Number of quote tweets."},"viewCount":{"type":["number","null"],"description":"Number of views."},"bookmarkCount":{"type":["number","null"],"description":"Number of bookmarks."},"isRetweet":{"type":["boolean","null"],"description":"Whether this tweet is a retweet."},"isReply":{"type":["boolean","null"],"description":"Whether this tweet is a reply to another tweet."},"lang":{"type":["string","null"],"description":"BCP-47 language code detected for the tweet (e.g. 'en' for English, 'es' for Spanish)."}}},"description":"List of quote tweets for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page of quote tweets. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["tweets"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/tweet-retweeters":{"post":{"operationId":"twitterTweetRetweeters","summary":"Fetch Twitter/X tweet retweeters","tags":["Social media"],"description":"Fetches a page of users who retweeted a tweet. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"tweetId":{"type":"string","pattern":"^\\d+$","minLength":1,"description":"Numeric tweet ID to fetch retweeters for (e.g. '1234567890123456789'). Must contain only digits."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page of retweeters. Omit for the first page."}},"required":["apiKey","tweetId"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostReposts"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric user ID."},"handle":{"type":["string","null"],"description":"Twitter/X handle (without '@')."},"displayName":{"type":["string","null"],"description":"Display name."},"bio":{"type":["string","null"],"description":"Profile bio / description."},"followerCount":{"type":["number","null"],"description":"Number of followers."},"isVerified":{"type":["boolean","null"],"description":"Legacy verified status."},"isBlueVerified":{"type":["boolean","null"],"description":"Twitter Blue / X Premium verified status."},"profileImageUrl":{"type":["string","null"],"description":"URL of the profile picture."}}},"description":"List of users who retweeted this tweet, for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page of retweeters. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["users"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/user-mentions":{"post":{"operationId":"twitterUserMentions","summary":"Fetch Twitter/X user mentions","tags":["Social media"],"description":"Fetches a page of tweets that mention a Twitter/X user. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"handle":{"type":"string","minLength":1,"description":"Twitter/X handle to fetch mentions for. Accepts with or without a leading '@'."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page of mentions. Omit for the first page."}},"required":["apiKey","handle"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialUserMentions"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric tweet ID."},"text":{"type":["string","null"],"description":"Full tweet text."},"authorId":{"type":["string","null"],"description":"Numeric user ID of the tweet author."},"handle":{"type":["string","null"],"description":"Twitter/X handle of the tweet author (without '@')."},"displayName":{"type":["string","null"],"description":"Display name of the tweet author."},"createdAt":{"type":["string","null"],"description":"When the tweet was created."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"replyCount":{"type":["number","null"],"description":"Number of replies."},"retweetCount":{"type":["number","null"],"description":"Number of retweets."},"quoteCount":{"type":["number","null"],"description":"Number of quote tweets."},"viewCount":{"type":["number","null"],"description":"Number of views."},"bookmarkCount":{"type":["number","null"],"description":"Number of bookmarks."},"isRetweet":{"type":["boolean","null"],"description":"Whether this tweet is a retweet."},"isReply":{"type":["boolean","null"],"description":"Whether this tweet is a reply to another tweet."},"lang":{"type":["string","null"],"description":"BCP-47 language code detected for the tweet (e.g. 'en' for English, 'es' for Spanish)."}}},"description":"List of tweets that mention this user, for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page of mentions. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["tweets"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/twitter/search":{"post":{"operationId":"twitterSearch","summary":"Search Twitter/X tweets","tags":["Social media"],"description":"Searches for tweets matching a query. Supports standard Twitter search operators (e.g. 'TypeScript from:elonmusk lang:en'). Returns a paginated list of matching tweets. Use the `cursor` field from the response to retrieve subsequent pages.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 2 credits per page of results&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","description":"Your Fiber API key"},"query":{"type":"string","minLength":1,"description":"Tweet search query string (e.g. 'TypeScript from:elonmusk'). Supports standard Twitter/X search operators."},"cursor":{"type":["string","null"],"minLength":1,"description":"Pagination cursor from a previous response to retrieve the next page of results. Omit for the first page."}},"required":["apiKey","query"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"2 credits per page of results","variableCosts":[{"credits":2,"perUnit":"page of results","operation":"socialPostSearch"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"tweets":{"type":"array","items":{"type":"object","properties":{"id":{"type":["string","null"],"description":"Numeric tweet ID."},"text":{"type":["string","null"],"description":"Full tweet text."},"authorId":{"type":["string","null"],"description":"Numeric user ID of the tweet author."},"handle":{"type":["string","null"],"description":"Twitter/X handle of the tweet author (without '@')."},"displayName":{"type":["string","null"],"description":"Display name of the tweet author."},"createdAt":{"type":["string","null"],"description":"When the tweet was created."},"likeCount":{"type":["number","null"],"description":"Number of likes."},"replyCount":{"type":["number","null"],"description":"Number of replies."},"retweetCount":{"type":["number","null"],"description":"Number of retweets."},"quoteCount":{"type":["number","null"],"description":"Number of quote tweets."},"viewCount":{"type":["number","null"],"description":"Number of views."},"bookmarkCount":{"type":["number","null"],"description":"Number of bookmarks."},"isRetweet":{"type":["boolean","null"],"description":"Whether this tweet is a retweet."},"isReply":{"type":["boolean","null"],"description":"Whether this tweet is a reply to another tweet."},"lang":{"type":["string","null"],"description":"BCP-47 language code detected for the tweet (e.g. 'en' for English, 'es' for Spanish)."}}},"description":"List of tweets matching the search query, for this page."},"nextCursor":{"type":["string","null"],"description":"Cursor to retrieve the next page of search results. Pass as `cursor` in the next request. Null if there are no more pages."}},"required":["tweets"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}},"/v1/company-revenue":{"post":{"operationId":"getCompanyRevenue","summary":"Get company revenue estimate","tags":["Company info"],"description":"Fetches the most recent annual revenue estimate for a company. Pass a LinkedIn company URL, domain, and/or company name.\n\n<span>⚡ <strong>Rate limit:</strong> 120 requests per 1 minute</span>\n\n<span>💰 <strong>Cost:</strong> 4 credits per company lookup&nbsp;<span title=\"Pricing shown is default pricing. Actual pricing may vary.\">ⓘ</span></span>","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"apiKey":{"type":"string","minLength":1},"companyMetadata":{"type":"object","properties":{"name":{"type":["string","null"],"minLength":1,"description":"Company display name (optional, helps disambiguate)"},"domain":{"type":["string","null"],"minLength":1,"description":"Company website domain (e.g. 'anthropic.com'), optional"},"linkedinUrl":{"type":["string","null"],"minLength":1,"description":"LinkedIn company URL or slug (e.g. 'https://www.linkedin.com/company/anthropic' or 'anthropic')"},"linkedinOrgId":{"type":["string","null"],"minLength":1,"description":"LinkedIn numeric organization ID (e.g. '1441'), optional"}}}},"required":["apiKey","companyMetadata"]}}}},"x-rate-limit":{"max":120,"window":"1 minute"},"x-credit-cost":{"description":"4 credits per company lookup","variableCosts":[{"credits":4,"perUnit":"company lookup","operation":"getCompanyRevenue"}],"chargingMethod":"charged-now"},"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"output":{"type":"object","properties":{"company":{"type":"object","properties":{"linkedinUrl":{"type":"string","minLength":1,"description":"LinkedIn company URL (e.g. 'https://www.linkedin.com/company/anthropic')"},"linkedinOrgId":{"type":"string","minLength":1,"description":"LinkedIn organization ID, if known"},"name":{"type":["string","null"],"minLength":1,"description":"Company display name, if known"},"domain":{"type":["string","null"],"minLength":1,"description":"Company website domain, if known"}},"required":["linkedinUrl","linkedinOrgId"]},"revenueInfo":{"type":["object","null"],"properties":{"lowerBound":{"type":"number","description":"Lower bound of the annual revenue estimate in USD"},"upperBound":{"type":"number","description":"Upper bound of the annual revenue estimate in USD"},"fiscalYear":{"type":"number","description":"Fiscal year the revenue figure corresponds to. Often (but not always) the most recent completed calendar year (e.g. 2025 as of 2026)."},"citations":{"type":"array","items":{"type":"string"},"description":"Source URLs used to derive the revenue estimate. May be empty when the revenue figure is common knowledge to the AI model and no web sources were needed."},"comments":{"type":["string","null"],"description":"Additional context about the revenue data"}},"required":["lowerBound","upperBound","fiscalYear","citations"],"description":"Revenue information. Null means the company was found but no public revenue data is available."}},"required":["company"]},"chargeInfo":{"oneOf":[{"type":"object","properties":{"method":{"type":"string","enum":["charged-now"]},"creditsCharged":{"type":"number"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged"],"description":"Credits were charged immediately for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["charging-later"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"Credits will be charged after the operation completes"},{"type":"object","properties":{"method":{"type":"string","enum":["charged-for-async-process"]},"creditsCharged":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsCharged","message"],"description":"Credits that were charged for an asynchronous operation"},{"type":"object","properties":{"method":{"type":"string","enum":["free"]},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","message"],"description":"No credits were charged for this operation"},{"type":"object","properties":{"method":{"type":"string","enum":["credits-refunded"]},"creditsRefunded":{"type":"number"},"message":{"type":"string"},"lowCreditAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Contains a link to get more credits, a warning message, and the remaining credit count."}},"required":["method","creditsRefunded","message"],"description":"Credits were refunded for this operation"}]},"warnings":{"type":["array","null"],"items":{"type":"object","properties":{"field":{"type":"string","description":"Full path to extraneous field (e.g., 'searchParams.ExtraField')"},"message":{"type":"string","description":"Warning message"}},"required":["field","message"]},"description":"Warnings about extraneous fields in request"}},"required":["output","chargeInfo"],"additionalProperties":false}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"402":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."},"outOfCreditsAlert":{"type":["object","null"],"properties":{"getMoreCreditsUrl":{"type":"string","format":"uri","description":"URL to top up credits or restart billing cycle to get fresh credits."},"message":{"type":"string","description":"Human-readable credits warning."},"availableCredits":{"type":"number","description":"Number of credits remaining in the current billing period."}},"required":["getMoreCreditsUrl","message","availableCredits"],"description":"Present on 402 responses. Contains a link to get more credits."}},"required":["message"],"additionalProperties":true}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"The error message."}},"required":["message"],"additionalProperties":true}}}}}}}},"servers":[{"url":"https://api.fiber.ai","description":"Production server"}],"webhooks":{"reveal.completed":{"post":{"operationId":"reveal.completed","description":"Fired when a contact reveal operation completes (success or failure).","x-svix-group-name":"enrichment","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"emails":{"type":"array","items":{"type":"object","properties":{"email":{"type":"string"},"type":{"type":"string","enum":["work","personal","other","unknown","generic"]},"status":{"type":"string","enum":["valid","risky","unknown","invalid"]}},"required":["email","type"]}},"error":{"type":["string","null"]},"linkedin_url":{"type":"string"},"phone_numbers":{"type":"array","items":{"type":"object","properties":{"number":{"type":"string"},"type":{"type":"string","enum":["mobile","other","unknown"]}},"required":["number","type"]}},"success":{"type":"boolean"},"task_id":{"type":"string"}},"required":["emails","linkedin_url","phone_numbers","success","task_id"],"title":"RevealCompletedPayload","description":"Payload delivered when a contact reveal operation completes."}}}}}},"saved_search.run_completed":{"post":{"operationId":"saved_search.run_completed","description":"Fired when a saved search run finishes executing.","x-svix-group-name":"search","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"saved_search_id":{"type":"string"},"saved_search_run_id":{"type":"string"},"started_at":{"type":"string"},"completed_at":{"type":"string"},"success":{"type":"boolean"}},"required":["saved_search_id","saved_search_run_id","started_at","completed_at","success"],"title":"SavedSearchRunCompletedPayload","description":"Payload delivered when a saved search run finishes."}}}}}},"job.changed":{"post":{"operationId":"job.changed","description":"Fired when tracked profiles are detected to have changed jobs.","x-svix-group-name":"monitoring","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"profiles":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"linkedinUrl":{"type":"string"},"movementDetails":{"type":"object","properties":{"discoveredAt":{"type":"string"},"newCompanyName":{"type":["string","null"]},"newCompanyLogoUrl":{"type":["string","null"]},"newCompanyOrgId":{"type":["string","null"]},"newCompanyLiSlug":{"type":["string","null"]},"newCompanyDomain":{"type":["string","null"]},"newJobTitle":{"type":["string","null"]},"oldCompanyName":{"type":["string","null"]},"oldCompanyLogoUrl":{"type":["string","null"]},"oldCompanyOrgId":{"type":["string","null"]},"oldCompanyLiSlug":{"type":["string","null"]},"oldCompanyDomain":{"type":["string","null"]},"oldJobTitle":{"type":["string","null"]},"startedInRoleAt":{"type":["string","null"]},"startedAtCompanyAt":{"type":["string","null"]},"movement":{"type":"string","enum":["promoted","lateral-move","new-role","changed","no-change"]}},"required":["discoveredAt","movement"]}},"required":["id","linkedinUrl","movementDetails"]}}},"required":["profiles"],"title":"JobChangedPayload","description":"Payload delivered when tracked profiles are detected to have changed jobs."}}}}}},"batch_live_enrich.completed":{"post":{"operationId":"batch_live_enrich.completed","description":"Fired when a batch live enrichment job completes.","x-svix-group-name":"enrichment","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"job_id":{"type":"string"},"type":{"type":"string","enum":["PROFILE","COMPANY"]},"success":{"type":"boolean"},"total_identifiers":{"type":"number"},"completed":{"type":"number"},"failed":{"type":"number"},"not_found":{"type":"number"},"malformed":{"type":"number"}},"required":["job_id","type","success","total_identifiers","completed","failed","not_found","malformed"],"title":"BatchLiveEnrichCompletedPayload","description":"Payload delivered when a batch live enrichment job completes."}}}}}},"batch_contact_enrich.completed":{"post":{"operationId":"batch_contact_enrich.completed","description":"Fired when a batch contact enrichment job completes.","x-svix-group-name":"enrichment","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"task_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":"number"},"completed":{"type":"number"},"failed":{"type":"number"},"error":{"type":["string","null"]}},"required":["task_id","success","total","completed","failed"],"title":"BatchContactEnrichCompletedPayload","description":"Payload delivered when a batch contact enrichment job completes."}}}}}},"batch_contact_enrich_v1.completed":{"post":{"operationId":"batch_contact_enrich_v1.completed","description":"Fired when a legacy batch contact enrichment job completes.","x-svix-group-name":"enrichment","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"task_id":{"type":"string","minLength":1},"audience_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":"number"},"error":{"type":["string","null"]}},"required":["task_id","audience_id","success","total"],"title":"BatchContactEnrichV1CompletedPayload","description":"Payload delivered when a legacy batch contact enrichment job completes."}}}}}},"github_to_linkedin.completed":{"post":{"operationId":"github_to_linkedin.completed","description":"Fired when a GitHub-to-LinkedIn batch lookup completes.","x-svix-group-name":"lookup","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"run_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":"number"},"failed_batches":{"type":"number"},"error":{"type":["string","null"]}},"required":["run_id","success","total","failed_batches"],"title":"GitHubToLinkedInCompletedPayload","description":"Payload delivered when a GitHub-to-LinkedIn batch lookup completes."}}}}}},"github_lookup.completed":{"post":{"operationId":"github_lookup.completed","description":"Fired when a GitHub profile lookup completes.","x-svix-group-name":"lookup","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"run_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":"number"},"failed_batches":{"type":"number"},"error":{"type":["string","null"]}},"required":["run_id","success","total","failed_batches"],"title":"GitHubLookupCompletedPayload","description":"Payload delivered when a GitHub profile lookup completes."}}}}}},"domain_lookup.completed":{"post":{"operationId":"domain_lookup.completed","description":"Fired when a domain lookup completes.","x-svix-group-name":"lookup","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"run_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":"number"},"resolved":{"type":"number"},"error":{"type":["string","null"]}},"required":["run_id","success","total","resolved"],"title":"DomainLookupCompletedPayload","description":"Payload delivered when a domain lookup completes."}}}}}},"social_media_lookup.completed":{"post":{"operationId":"social_media_lookup.completed","description":"Fired when a social media lookup completes.","x-svix-group-name":"lookup","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"run_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":"number"},"error":{"type":["string","null"]}},"required":["run_id","success","total"],"title":"SocialMediaLookupCompletedPayload","description":"Payload delivered when a social media lookup completes."}}}}}},"google_maps_search.completed":{"post":{"operationId":"google_maps_search.completed","description":"Fired when a Google Maps search completes.","x-svix-group-name":"search","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"search_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total_results":{"type":"number"},"error":{"type":["string","null"]}},"required":["search_id","success","total_results"],"title":"GoogleMapsSearchCompletedPayload","description":"Payload delivered when a Google Maps search completes."}}}}}},"local_business_search.completed":{"post":{"operationId":"local_business_search.completed","description":"Fired when a local business search completes.","x-svix-group-name":"search","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"run_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total_results":{"type":"number"},"error":{"type":["string","null"]}},"required":["run_id","success","total_results"],"title":"LocalBusinessSearchCompletedPayload","description":"Payload delivered when a local business search completes."}}}}}},"depth_chart.completed":{"post":{"operationId":"depth_chart.completed","description":"Fired when a company depth chart generation completes.","x-svix-group-name":"analytics","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"task_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"company_name":{"type":["string","null"]},"employee_count":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["task_id","success"],"title":"DepthChartCompletedPayload","description":"Payload delivered when a company depth chart generation completes."}}}}}},"audience.enrichment_completed":{"post":{"operationId":"audience.enrichment_completed","description":"Fired when an audience enrichment process completes.","x-svix-group-name":"enrichment","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"audience_id":{"type":"string","minLength":1},"combined_enrichment_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"enriched_prospect_count":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["audience_id","combined_enrichment_id","success"],"title":"AudienceEnrichmentCompletedPayload","description":"Payload delivered when an audience enrichment process completes."}}}}}},"audience.prospect_export_completed":{"post":{"operationId":"audience.prospect_export_completed","description":"Fired when an audience prospect CSV export completes.","x-svix-group-name":"enrichment","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"audience_id":{"type":"string","minLength":1},"export_id":{"type":["string","null"],"minLength":1},"success":{"type":"boolean"},"total_rows":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["audience_id","success"],"title":"AudienceProspectExportCompletedPayload","description":"Payload delivered when an audience prospect CSV export completes."}}}}}},"audience.company_export_completed":{"post":{"operationId":"audience.company_export_completed","description":"Fired when an audience company CSV export completes.","x-svix-group-name":"enrichment","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"audience_id":{"type":"string","minLength":1},"export_id":{"type":["string","null"],"minLength":1},"success":{"type":"boolean"},"total_rows":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["audience_id","success"],"title":"AudienceCompanyExportCompletedPayload","description":"Payload delivered when an audience company CSV export completes."}}}}}},"audience.build_completed":{"post":{"operationId":"audience.build_completed","description":"Fired when an audience build process completes.","x-svix-group-name":"search","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"audience_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total_companies":{"type":["number","null"]},"total_prospects":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["audience_id","success"],"title":"AudienceBuildCompletedPayload","description":"Payload delivered when an audience build process completes."}}}}}},"combined_search.completed":{"post":{"operationId":"combined_search.completed","description":"Fired when an async combined search completes.","x-svix-group-name":"search","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"search_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"error":{"type":["string","null"]}},"required":["search_id","success"],"title":"CombinedSearchCompletedPayload","description":"Payload delivered when an async combined search completes."}}}}}},"sales_nav_scrape.completed":{"post":{"operationId":"sales_nav_scrape.completed","description":"Fired when a Sales Navigator people scrape completes.","x-svix-group-name":"scraping","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"task_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["task_id","success"],"title":"SalesNavScrapeCompletedPayload","description":"Payload delivered when a Sales Navigator people scrape completes."}}}}}},"sales_nav_lite_scrape.completed":{"post":{"operationId":"sales_nav_lite_scrape.completed","description":"Fired when a Sales Navigator lite scrape completes.","x-svix-group-name":"scraping","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"task_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["task_id","success"],"title":"SalesNavLiteScrapeCompletedPayload","description":"Payload delivered when a Sales Navigator lite scrape completes."}}}}}},"job_changes.profiles_added":{"post":{"operationId":"job_changes.profiles_added","description":"Fired when profiles are added to a job change tracking list.","x-svix-group-name":"monitoring","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"list_id":{"type":"string","minLength":1},"success":{"type":"boolean"},"total_added":{"type":"number"},"invalid_count":{"type":["number","null"]},"error":{"type":["string","null"]}},"required":["list_id","success","total_added"],"title":"JobChangesProfilesAddedPayload","description":"Payload delivered when profiles are added to a job change tracking list."}}}}}},"tracker.signal_detected":{"post":{"operationId":"tracker.signal_detected","description":"Fired when a tracked entity matches a detection rule (e.g. headcount crossed threshold).","x-svix-group-name":"monitoring","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Whether the signal was successfully detected and processed"},"eventId":{"type":"string","minLength":1,"description":"Stable unique ID for deduplication across webhook retries"},"occurredAt":{"type":"string","format":"date-time","description":"When the signal was detected (ISO 8601)"},"entity":{"type":"object","properties":{"type":{"type":"string","enum":["company","person"],"description":"Type of entity that changed"},"identifiers":{"type":"object","properties":{"linkedinOrgId":{"type":["string","null"],"minLength":1,"description":"Organization ID (companies)"},"linkedinSlug":{"type":["string","null"],"minLength":1,"description":"Entity slug (companies or people)"},"domain":{"type":["string","null"],"minLength":1,"description":"Company domain"},"linkedinUserId":{"type":["string","null"],"minLength":1,"description":"User ID (people)"},"name":{"type":["string","null"],"minLength":1,"description":"Display name of the entity"}}}},"required":["type","identifiers"]},"subscription":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Subscription ID"},"type":{"type":"string","minLength":1,"description":"Subscription type slug (e.g. headcount_crossed_threshold)"},"listId":{"type":"string","minLength":1,"description":"Tracker list ID"},"listName":{"type":"string","minLength":1,"description":"Human-readable list name"}},"required":["id","type","listId","listName"]},"signal":{"type":"object","properties":{"type":{"type":"string","minLength":1,"description":"Signal type (same as rule type)"},"summary":{"type":"string","minLength":1,"description":"Human-readable explanation of what happened"},"changeData":{"type":"array","items":{"type":"object","additionalProperties":{}},"description":"Array of objects describing what changed. Shape varies by signal type."},"confidence":{"type":"number","minimum":0,"maximum":1,"description":"Confidence score (1.0 for deterministic rules)"}},"required":["type","summary","changeData","confidence"]},"billing":{"type":"object","properties":{"creditsCharged":{"type":"number","minimum":0,"description":"Credits deducted for this notification"},"billingMethod":{"type":"string","enum":["per_notification","per_check"],"description":"How this notification was billed"}},"required":["creditsCharged","billingMethod"]}},"required":["success","eventId","occurredAt","entity","subscription","signal","billing"]}}}}}}}}