{"openapi":"3.1.0","info":{"title":"DataLayer API","version":"1.0.0","description":"The B2B enrichment API built for developers and AI agents.\n\n**60M companies · 300M verified contacts · Intent signals**\n\nEnrich companies and people by domain, email, LinkedIn URL, or name.\nSurface unique signals: Google ad spend, hiring velocity, employee growth.\nNative MCP server for Claude, Cursor, and any AI agent framework.\n\n## Authentication\nPass your API key in the `X-API-Key` header on every request.\n\n## Credits\n1 enrichment = 1 credit. Subscription credits reset each billing cycle. Top-up credits expire 1 year from purchase.\nRate limit headers included on every response: `X-RateLimit-Remaining`, `X-RateLimit-Reset`.","contact":{"name":"DataLayer Support","url":"https://datalayer.sh","email":"support@datalayer.sh"},"license":{"name":"Commercial","url":"https://datalayer.sh/terms"}},"servers":[{"url":"https://api.datalayer.sh","description":"API"}],"tags":[{"name":"Enrichment","description":"Enrich a company or person by a known identifier (domain, email, LinkedIn URL)."},{"name":"Lookup","description":"Point lookups — find one record by a single identifier."},{"name":"Search","description":"Filtered discovery — search 60M companies or 300M contacts with rich filters."},{"name":"Company Intel","description":"Deep company intelligence — headcount by department, open roles, tech stack."},{"name":"Signals","description":"Intent signals — companies showing buying intent scored by signal strength."}],"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"X-API-Key"}},"schemas":{"Person":{"type":"object","properties":{"id":{"type":"string","example":"per_8f3k2m1p"},"full_name":{"type":"string","nullable":true},"first_name":{"type":"string","nullable":true},"last_name":{"type":"string","nullable":true},"email":{"type":"string","nullable":true},"email_status":{"type":"string","nullable":true},"phone":{"type":"string","nullable":true},"job_title":{"type":"string","nullable":true},"job_level":{"type":"string","nullable":true},"job_function":{"type":"string","nullable":true},"job_start_date":{"type":"string","nullable":true},"is_current":{"type":"boolean","nullable":true},"linkedin_url":{"type":"string","nullable":true},"headline":{"type":"string","nullable":true},"persona":{"type":"string","nullable":true},"location":{"$ref":"#/components/schemas/Location"},"company":{"$ref":"#/components/schemas/CompanyStub"}},"required":["id","full_name","first_name","last_name","email","email_status","phone","job_title","job_level","job_function","job_start_date","is_current","linkedin_url","headline","persona","location","company"]},"Location":{"type":"object","properties":{"city":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"country_code":{"type":"string","nullable":true},"region":{"type":"string","nullable":true}},"required":["city","state","country","country_code","region"]},"CompanyStub":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"domain":{"type":"string","nullable":true},"linkedin_url":{"type":"string","nullable":true}},"required":["id","name","domain","linkedin_url"]},"Error":{"type":"object","properties":{"error":{"type":"string"},"message":{"type":"string"},"status":{"type":"number"}},"required":["error","message","status"]},"EnrichPersonInput":{"type":"object","properties":{"email":{"type":"string","format":"email","example":"john@company.com"},"linkedin_url":{"type":"string","format":"uri","example":"https://linkedin.com/in/johndoe"},"hashed_email":{"type":"string","description":"MD5 or SHA-256 hash of the email"},"first_name":{"type":"string"},"last_name":{"type":"string"},"domain":{"type":"string","example":"company.com"}}},"Company":{"type":"object","properties":{"id":{"type":"string","example":"cmp_4x9n7q2w"},"name":{"type":"string","nullable":true},"domain":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"linkedin_url":{"type":"string","nullable":true},"description":{"type":"string","nullable":true},"industry":{"type":"string","nullable":true},"employee_count_range":{"type":"string","nullable":true},"founded":{"type":"number","nullable":true},"revenue_range":{"type":"string","nullable":true},"headquarters":{"$ref":"#/components/schemas/Location"},"logo_url":{"type":"string","nullable":true},"is_website_working":{"type":"boolean","nullable":true},"specialties":{"type":"string","nullable":true},"signals":{"$ref":"#/components/schemas/Signals"}},"required":["id","name","domain","website","linkedin_url","description","industry","employee_count_range","founded","revenue_range","headquarters","logo_url","is_website_working","specialties"]},"Signals":{"type":"object","properties":{"monthly_traffic":{"type":"number","nullable":true},"organic_traffic":{"type":"number","nullable":true},"paid_traffic":{"type":"number","nullable":true},"google_adspend":{"type":"number","nullable":true},"total_funding":{"type":"number","nullable":true},"last_funding_type":{"type":"string","nullable":true},"last_funding_date":{"type":"string","nullable":true},"lead_investors":{"type":"string","nullable":true},"employee_growth_rate":{"type":"number","nullable":true},"crm_tech":{"type":"string","nullable":true},"cloud_provider":{"type":"string","nullable":true},"cms_tech":{"type":"string","nullable":true},"marketing_automation":{"type":"string","nullable":true},"sales_automation":{"type":"string","nullable":true},"analytics_tech":{"type":"string","nullable":true},"ecommerce_tech":{"type":"string","nullable":true},"has_mobile_app":{"type":"boolean","nullable":true},"has_web_app":{"type":"boolean","nullable":true}},"required":["monthly_traffic","organic_traffic","paid_traffic","google_adspend","total_funding","last_funding_type","last_funding_date","lead_investors","employee_growth_rate","crm_tech","cloud_provider","cms_tech","marketing_automation","sales_automation","analytics_tech","ecommerce_tech","has_mobile_app","has_web_app"]},"EnrichCompanyInput":{"type":"object","properties":{"domain":{"type":"string","example":"salesforce.com"},"linkedin_url":{"type":"string","format":"uri","example":"https://linkedin.com/company/salesforce"},"name":{"type":"string"},"location":{"type":"string","description":"City, state, or country to disambiguate name lookup"}}},"BulkPersonResult":{"type":"object","properties":{"id":{"type":"string"},"status":{"type":"string","enum":["found","not_found"]},"data":{"$ref":"#/components/schemas/Person"}},"required":["status"]},"BulkPersonInput":{"type":"object","properties":{"records":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Your own reference ID — echoed back in response"},"email":{"type":"string","format":"email"},"linkedin_url":{"type":"string","format":"uri"},"hashed_email":{"type":"string"},"first_name":{"type":"string"},"last_name":{"type":"string"},"domain":{"type":"string"}}},"minItems":1,"maxItems":100,"description":"Up to 100 records per call. Each consumes 1 credit (+ 1 if email returned, + 1 if phone returned)."}},"required":["records"]},"BulkCompanyResult":{"type":"object","properties":{"id":{"type":"string"},"status":{"type":"string","enum":["found","not_found"]},"data":{"$ref":"#/components/schemas/Company"}},"required":["status"]},"BulkCompanyInput":{"type":"object","properties":{"records":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Your own reference ID — echoed back in response"},"domain":{"type":"string"},"linkedin_url":{"type":"string","format":"uri"},"name":{"type":"string"},"location":{"type":"string"}}},"minItems":1,"maxItems":100,"description":"Up to 100 records per call. Each consumes 1 credit."}},"required":["records"]},"Pagination":{"type":"object","properties":{"page":{"type":"number"},"per_page":{"type":"number"},"total":{"type":"number"},"has_more":{"type":"boolean"}},"required":["page","per_page","total","has_more"]},"PeopleSearchInput":{"type":"object","properties":{"titles":{"type":"array","items":{"type":"string"},"description":"Job title keywords (fuzzy match)","example":["VP Engineering","CTO"]},"seniorities":{"type":"array","items":{"type":"string","enum":["C-Suite","C-Team","VP","Director","Manager","Staff","Other","Entry","Intern"]}},"functions":{"type":"array","items":{"type":"string"},"example":["Engineering","Sales"]},"is_current":{"type":"boolean","description":"Only return people in their current role","example":true},"locations":{"type":"array","items":{"type":"string"},"description":"City, state, or country names","example":["San Francisco","United States"]},"country_codes":{"type":"array","items":{"type":"string"},"example":["US","GB"]},"has_email":{"type":"boolean","description":"Only return people with a verified email"},"has_phone":{"type":"boolean","description":"Only return people with a phone number"},"company_domains":{"type":"array","items":{"type":"string"},"description":"Filter by employer domain (up to 100)","example":["salesforce.com"]},"company_name":{"type":"string"},"personas":{"type":"array","items":{"type":"string"},"example":["Decision Maker"]},"page":{"type":"number","minimum":1,"default":1},"per_page":{"type":"number","minimum":1,"maximum":100,"default":25}}},"CompanySearchInput":{"type":"object","properties":{"industries":{"type":"array","items":{"type":"string"},"example":["Computer Software","Financial Services"]},"country_codes":{"type":"array","items":{"type":"string"},"example":["US","GB"]},"employee_ranges":{"type":"array","items":{"type":"string"},"example":["11 to 50","51 to 200"]},"founded_after":{"type":"number","example":2015},"founded_before":{"type":"number","example":2022},"has_website":{"type":"boolean"},"revenue_ranges":{"type":"array","items":{"type":"string"}},"crm_tech":{"type":"array","items":{"type":"string"},"example":["Salesforce","HubSpot"]},"cloud_provider":{"type":"array","items":{"type":"string"},"example":["AWS","GCP"]},"cms_tech":{"type":"array","items":{"type":"string"}},"marketing_automation":{"type":"array","items":{"type":"string"}},"sales_automation":{"type":"array","items":{"type":"string"}},"analytics_tech":{"type":"array","items":{"type":"string"}},"ecommerce_tech":{"type":"array","items":{"type":"string"}},"has_mobile_app":{"type":"boolean"},"has_web_app":{"type":"boolean"},"min_monthly_traffic":{"type":"number"},"max_monthly_traffic":{"type":"number"},"min_google_adspend":{"type":"number"},"max_google_adspend":{"type":"number"},"min_total_funding":{"type":"number"},"max_total_funding":{"type":"number"},"last_funding_types":{"type":"array","items":{"type":"string"},"example":["Series A","Series B"]},"last_funded_after":{"type":"string","example":"2023-01-01"},"min_employee_growth_rate":{"type":"number","description":"Minimum LinkedIn employee growth rate (0.1 = 10%)"},"page":{"type":"number","minimum":1,"default":1},"per_page":{"type":"number","minimum":1,"maximum":100,"default":25}}},"Headcount":{"type":"object","properties":{"engineering":{"type":"number","nullable":true},"sales":{"type":"number","nullable":true},"marketing":{"type":"number","nullable":true},"operations":{"type":"number","nullable":true},"it":{"type":"number","nullable":true},"devops":{"type":"number","nullable":true},"customer_success":{"type":"number","nullable":true},"business_development":{"type":"number","nullable":true},"android_dev":{"type":"number","nullable":true},"ios_dev":{"type":"number","nullable":true},"mobile_dev":{"type":"number","nullable":true},"qa":{"type":"number","nullable":true},"security":{"type":"number","nullable":true},"grc":{"type":"number","nullable":true},"network_infrastructure":{"type":"number","nullable":true}},"required":["engineering","sales","marketing","operations","it","devops","customer_success","business_development","android_dev","ios_dev","mobile_dev","qa","security","grc","network_infrastructure"]},"OpenJobs":{"type":"object","properties":{"total_open_roles":{"type":"number"},"by_department":{"type":"object","properties":{"sales":{"type":"number","nullable":true},"devops":{"type":"number","nullable":true},"marketing":{"type":"number","nullable":true},"it":{"type":"number","nullable":true},"security":{"type":"number","nullable":true},"customer_success":{"type":"number","nullable":true},"business_development":{"type":"number","nullable":true},"demand_generation":{"type":"number","nullable":true},"operations":{"type":"number","nullable":true},"network_infrastructure":{"type":"number","nullable":true},"grc":{"type":"number","nullable":true},"account_executive":{"type":"number","nullable":true}},"required":["sales","devops","marketing","it","security","customer_success","business_development","demand_generation","operations","network_infrastructure","grc","account_executive"]}},"required":["total_open_roles","by_department"]},"Technographics":{"type":"object","properties":{"crm":{"type":"string","nullable":true},"cloud_provider":{"type":"string","nullable":true},"cms":{"type":"string","nullable":true},"marketing_automation":{"type":"string","nullable":true},"sales_automation":{"type":"string","nullable":true},"analytics":{"type":"string","nullable":true},"ecommerce":{"type":"string","nullable":true},"email_hosting":{"type":"string","nullable":true},"email_security":{"type":"string","nullable":true},"cloud_security":{"type":"string","nullable":true},"application_security":{"type":"string","nullable":true},"conversation_intelligence":{"type":"string","nullable":true},"abm":{"type":"string","nullable":true},"erp":{"type":"string","nullable":true},"development":{"type":"string","nullable":true},"martech_categories":{"type":"string","nullable":true}},"required":["crm","cloud_provider","cms","marketing_automation","sales_automation","analytics","ecommerce","email_hosting","email_security","cloud_security","application_security","conversation_intelligence","abm","erp","development","martech_categories"]},"IntentCompany":{"allOf":[{"$ref":"#/components/schemas/Company"},{"type":"object","properties":{"intent_score":{"type":"number","description":"Composite intent score (0-100)","example":82},"intent_signals":{"type":"array","items":{"type":"string"},"description":"Which signals triggered","example":["google_adspend","hiring_velocity"]}},"required":["intent_score","intent_signals"]}]},"IntentSignalInput":{"type":"object","properties":{"min_monthly_traffic":{"type":"number","description":"Minimum total monthly web traffic","example":10000},"min_google_adspend":{"type":"number","description":"Min monthly Google ad spend ($)","example":5000},"min_open_roles":{"type":"number","description":"Min total open roles across all departments","example":5},"min_employee_growth_rate":{"type":"number","description":"Min employee growth rate (0.1 = 10%)","example":0.1},"min_total_funding":{"type":"number","description":"Recently funded — min total funding ($)","example":1000000},"last_funded_after":{"type":"string","description":"Only companies funded after this date","example":"2023-01-01"},"industries":{"type":"array","items":{"type":"string"}},"country_codes":{"type":"array","items":{"type":"string"}},"employee_ranges":{"type":"array","items":{"type":"string"}},"page":{"type":"number","minimum":1,"default":1},"per_page":{"type":"number","minimum":1,"maximum":100,"default":25}}}},"parameters":{}},"paths":{"/v1/enrich/person":{"post":{"tags":["Enrichment"],"summary":"Enrich a person profile","description":"Returns a full contact profile. Provide at least one of: email, linkedin_url, hashed_email, or first_name + domain.","security":[{"ApiKeyAuth":[]}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EnrichPersonInput"}}}},"responses":{"200":{"description":"Person profile","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Person"}},"required":["data"]}}}},"404":{"description":"No match found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"422":{"description":"Validation error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/enrich/company":{"post":{"tags":["Enrichment"],"summary":"Enrich a company profile","description":"Returns a full company profile with signals. Provide domain, linkedin_url, or name (+optional location).","security":[{"ApiKeyAuth":[]}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EnrichCompanyInput"}}}},"responses":{"200":{"description":"Company profile","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Company"}},"required":["data"]}}}},"404":{"description":"No match found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/enrich/person/bulk":{"post":{"tags":["Enrichment"],"summary":"Bulk enrich person profiles","description":"Enrich up to 100 people in a single call. Pass your own `id` per record to correlate results. Each record consumes credits independently — not-found records do not consume credits.","security":[{"ApiKeyAuth":[]}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BulkPersonInput"}}}},"responses":{"200":{"description":"Bulk enrichment results","content":{"application/json":{"schema":{"type":"object","properties":{"results":{"type":"array","items":{"$ref":"#/components/schemas/BulkPersonResult"}},"summary":{"type":"object","properties":{"total":{"type":"number"},"found":{"type":"number"},"not_found":{"type":"number"}},"required":["total","found","not_found"]}},"required":["results","summary"]}}}}}}},"/v1/enrich/company/bulk":{"post":{"tags":["Enrichment"],"summary":"Bulk enrich company profiles","description":"Enrich up to 100 companies in a single call. Includes full signals (technographics, funding, traffic). Not-found records do not consume credits.","security":[{"ApiKeyAuth":[]}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BulkCompanyInput"}}}},"responses":{"200":{"description":"Bulk enrichment results","content":{"application/json":{"schema":{"type":"object","properties":{"results":{"type":"array","items":{"$ref":"#/components/schemas/BulkCompanyResult"}},"summary":{"type":"object","properties":{"total":{"type":"number"},"found":{"type":"number"},"not_found":{"type":"number"}},"required":["total","found","not_found"]}},"required":["results","summary"]}}}}}}},"/v1/people/lookup":{"get":{"tags":["Lookup"],"summary":"Lookup a person","description":"Point lookup by email, phone, LinkedIn URL, or name + company domain.","security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string","example":"john@company.com"},"required":false,"name":"email","in":"query"},{"schema":{"type":"string","example":"+1-555-000-0000"},"required":false,"name":"phone","in":"query"},{"schema":{"type":"string","example":"https://linkedin.com/in/johndoe"},"required":false,"name":"linkedin_url","in":"query"},{"schema":{"type":"string","example":"John Doe"},"required":false,"name":"name","in":"query"},{"schema":{"type":"string","example":"company.com"},"required":false,"name":"domain","in":"query"}],"responses":{"200":{"description":"Person found","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Person"}},"required":["data"]}}}},"400":{"description":"Missing lookup parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"No match found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/companies/lookup":{"get":{"tags":["Lookup"],"summary":"Lookup a company","description":"Point lookup by domain, LinkedIn URL, or company name + optional location.","security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string","example":"salesforce.com"},"required":false,"name":"domain","in":"query"},{"schema":{"type":"string","example":"https://linkedin.com/company/salesforce"},"required":false,"name":"linkedin_url","in":"query"},{"schema":{"type":"string","example":"Salesforce"},"required":false,"name":"name","in":"query"},{"schema":{"type":"string","example":"San Francisco"},"required":false,"name":"location","in":"query"}],"responses":{"200":{"description":"Company found","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Company"}},"required":["data"]}}}},"400":{"description":"Missing lookup parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"No match found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/people/search":{"post":{"tags":["Search"],"summary":"Search people","description":"Search across 300M+ professional profiles using title, seniority, location, company, and more. Returns max 100 per page.","security":[{"ApiKeyAuth":[]}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PeopleSearchInput"}}}},"responses":{"200":{"description":"List of matching people","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/Person"}},"pagination":{"$ref":"#/components/schemas/Pagination"}},"required":["data","pagination"]}}}}}}},"/v1/companies/search":{"post":{"tags":["Search"],"summary":"Search companies","description":"Search across 60M+ company profiles with technographic, funding, traffic, and growth filters.","security":[{"ApiKeyAuth":[]}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanySearchInput"}}}},"responses":{"200":{"description":"List of matching companies","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/Company"}},"pagination":{"$ref":"#/components/schemas/Pagination"}},"required":["data","pagination"]}}}}}}},"/v1/companies/{domain}/employees":{"get":{"tags":["Company Intel"],"summary":"Get company employees","description":"List contacts at a company, filterable by seniority and function. Paginated.","security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string","example":"salesforce.com"},"required":true,"name":"domain","in":"path"},{"schema":{"type":"string","example":"VP"},"required":false,"name":"seniority","in":"query"},{"schema":{"type":"string","example":"Engineering"},"required":false,"name":"function","in":"query"},{"schema":{"type":"string"},"required":false,"name":"has_email","in":"query"},{"schema":{"type":"number","nullable":true,"default":1},"required":false,"name":"page","in":"query"},{"schema":{"type":"number","nullable":true,"maximum":100,"default":25},"required":false,"name":"per_page","in":"query"}],"responses":{"200":{"description":"Employees","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/Person"}},"pagination":{"type":"object","properties":{"page":{"type":"number"},"per_page":{"type":"number"},"total":{"type":"number"},"has_more":{"type":"boolean"}},"required":["page","per_page","total","has_more"]}},"required":["data","pagination"]}}}},"404":{"description":"Company not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/companies/{domain}/headcount":{"get":{"tags":["Company Intel"],"summary":"Get company headcount by department","description":"Returns current employee count across 15 departments.","security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string"},"required":true,"name":"domain","in":"path"}],"responses":{"200":{"description":"Headcount","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Headcount"}},"required":["data"]}}}},"404":{"description":"Company not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/companies/{domain}/jobs":{"get":{"tags":["Company Intel"],"summary":"Get company open roles","description":"Returns open role counts by department — a hiring intent signal.","security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string"},"required":true,"name":"domain","in":"path"}],"responses":{"200":{"description":"Open roles","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/OpenJobs"}},"required":["data"]}}}},"404":{"description":"Company not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/companies/{domain}/technographics":{"get":{"tags":["Company Intel"],"summary":"Get company tech stack","description":"Returns the full technology stack across 16 categories.","security":[{"ApiKeyAuth":[]}],"parameters":[{"schema":{"type":"string"},"required":true,"name":"domain","in":"path"}],"responses":{"200":{"description":"Tech stack","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Technographics"}},"required":["data"]}}}},"404":{"description":"Company not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/v1/signal/intent":{"post":{"tags":["Signals"],"summary":"Companies with buying intent","description":"Returns companies showing active buying signals — web traffic, Google ad spend, hiring velocity, employee growth, or recent funding. Companies are scored and ranked by combined signal strength.","security":[{"ApiKeyAuth":[]}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IntentSignalInput"}}}},"responses":{"200":{"description":"Intent-scored companies","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/IntentCompany"}},"pagination":{"$ref":"#/components/schemas/Pagination"}},"required":["data","pagination"]}}}}}}}}}