Skip to main content
POST
/
search
/
companies
curl -X POST https://api.dataforb2b.ai/search/companies \
  -H "api_key: YOUR_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "filters": {
      "op": "and",
      "conditions": [
        {"column": "industry", "type": "like", "value": "Technology"},
        {"column": "country_iso_code", "type": "=", "value": "US"}
      ]
    },
    "count": 10
  }'
{
  "total": 10000,
  "offset": 0,
  "count": 2,
  "credits_used": 2,
  "results": [
    {
      "id": "org_ABC123xyz",
      "name": "TechCorp Solutions",
      "tagline": "Innovating Tomorrow's Technology Today",
      "description": "TechCorp Solutions is a leading technology company specializing in cloud infrastructure and enterprise software solutions. We help businesses transform digitally through cutting-edge technology and innovative approaches. Our team of 500+ engineers delivers scalable solutions to Fortune 500 companies worldwide.",
      "industry": "software development",
      "headquarters": {
        "country": "US",
        "city": "San Francisco",
        "region": "California"
      },
      "founded_year": 2015,
      "company_type": "PRIVATELY_HELD",
      "logo_url": "https://media.licdn.com/dms/image/...",
      "links": {
        "website": "https://www.techcorp.com",
        "instagram": "https://instagram.com/techcorp",
        "facebook": "https://facebook.com/techcorp",
        "twitter": "https://twitter.com/techcorp",
        "youtube": "https://youtube.com/techcorp",
        "tiktok": null,
        "github": "https://github.com/techcorp",
        "behance": null,
        "spotify": null,
        "whatsapp": null,
        "telegram": null,
        "linktree": null,
        "other": null,
        "linkedin": "https://www.linkedin.com/company/techcorp-solutions"
      },
      "size": {
        "employees": 520,
        "range_min": 501,
        "range_max": 1000
      },
      "metrics": {
        "followers": 25000,
        "active_jobs": 45
      },
      "signals": {
        "verified": true
      },
      "categories": [
        "software",
        "cloud computing",
        "enterprise software"
      ],
      "locations": [
        {
          "country": "US",
          "city": "San Francisco",
          "region": "California",
          "is_headquarters": true
        },
        {
          "country": "US",
          "city": "New York",
          "region": "New York",
          "is_headquarters": false
        },
        {
          "country": "GB",
          "city": "London",
          "region": "England",
          "is_headquarters": false
        }
      ],
      "funding": {
        "last_round_amount_usd": 45000000,
        "last_round_date": "2023-06-15",
        "total_raised_usd": 85000000
      },
      "growth": {
        "percent_1m": 3.2,
        "percent_6m": 18.5,
        "percent_12m": 45.8,
        "recent_hires": 28
      }
    },
    {
      "id": "org_DEF456abc",
      "name": "DataAnalytics Pro",
      "tagline": "Empowering Data-Driven Decisions",
      "description": "DataAnalytics Pro provides advanced analytics and business intelligence solutions for mid-market companies. Our platform helps organizations unlock insights from their data through AI-powered analytics, real-time dashboards, and predictive modeling.",
      "industry": "software development",
      "headquarters": {
        "country": "US",
        "city": "Austin",
        "region": "Texas"
      },
      "founded_year": 2019,
      "company_type": "PRIVATELY_HELD",
      "logo_url": "https://media.licdn.com/dms/image/...",
      "links": {
        "website": "https://www.dataanalyticspro.com",
        "instagram": null,
        "facebook": null,
        "twitter": "https://twitter.com/dataanalyticspro",
        "youtube": null,
        "tiktok": null,
        "github": null,
        "behance": null,
        "spotify": null,
        "whatsapp": null,
        "telegram": null,
        "linktree": null,
        "other": null,
        "linkedin": "https://www.linkedin.com/company/dataanalytics-pro"
      },
      "size": {
        "employees": 85,
        "range_min": 51,
        "range_max": 200
      },
      "metrics": {
        "followers": 4200,
        "active_jobs": 12
      },
      "signals": {
        "verified": false
      },
      "categories": [
        "Analytics",
        "Business Intelligence",
        "Data Science"
      ],
      "locations": [
        {
          "country": "US",
          "city": "Austin",
          "region": "Texas",
          "is_headquarters": true
        }
      ],
      "funding": {
        "last_round_amount_usd": 12000000,
        "last_round_date": "2022-09-12",
        "total_raised_usd": 15000000
      },
      "growth": {
        "percent_1m": 5.6,
        "percent_6m": 25.0,
        "percent_12m": 70.0,
        "recent_hires": 15
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dataforb2b.ai/llms.txt

Use this file to discover all available pages before exploring further.

Credit Cost

ModeCredits per Result
enrich_live: true1.5 credits
enrich_live: false0.75 credits

Request Body

filters
object
Filter group to apply to the search. See Filters section below.
filters.op
string
required
Logical operator to combine conditions.
  • and - All conditions must match
  • or - At least one condition must match
filters.conditions
array
required
Array of filter conditions or nested filter groups.
filters.conditions[].column
string
required
Column name to filter on. See Available Columns section below for complete list with data types and recommended operators.Basic Info: name, tagline, description, domain, universal_name, keyword, industrySize: employee_count (ranges: 1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+)Headquarters: country_iso_code (ISO 2 letters like “US”, “FR”, “GB”), city, regionOffices: office_country, office_city, office_regionGrowth: employee_growth_1m, employee_growth_6m, employee_growth_12m, recent_hires_countMetadata: founded_year, company_type, follower_count, page_verified, categoryFunding: last_funding_amount_usd, last_funding_date, funding_stage_normalized, has_funding
filters.conditions[].type
string
required
Comparison operator to use. Available operators:
  • = - Exact match
  • > - Greater than
  • >= - Greater than or equal
  • < - Less than
  • <= - Less than or equal
  • between - Between two values (requires value2)
  • in - Value is in a list
  • like - Text search (pattern matching)
filters.conditions[].value
any
Filter value to compare against.
filters.conditions[].value2
any
Second value (only used with between operator).
offset
integer
default:"0"
Number of results to skip for pagination.
count
integer
default:"25"
Number of results to return. Maximum: 1000.
enrich_live
boolean
default:"true"
Whether to enrich companies with live data.
  • true - Returns fresh, up-to-date data (1.5 credits per result)
  • false - Returns cached data (0.75 credits per result)

Filters System

FilterGroup Structure

A FilterGroup combines multiple conditions with a logical operator:
{
  "op": "and",
  "conditions": [...]
}
FieldTypeDescription
opstringLogical operator: "and" or "or"
conditionsarrayList of FilterCondition or nested FilterGroup (recursive)

FilterCondition Structure

{
  "column": "name",
  "type": "like",
  "value": "Tech",
  "value2": null
}
FieldTypeDescription
columnstringColumn name to filter on
typestringOperator type (see below)
valueanyFilter value
value2anySecond value (only for between operator)

Available Operators

OperatorDescriptionExample
=Exact match{"column": "name", "type": "=", "value": "Google"}
>Greater than{"column": "follower_count", "type": ">", "value": 10000}
>=Greater than or equal{"column": "employee_count", "type": ">=", "value": 100}
<Less than{"column": "founded_year", "type": "<", "value": 2020}
<=Less than or equal{"column": "employee_count", "type": "<=", "value": 50}
betweenBetween two values{"column": "founded_year", "type": "between", "value": 2010, "value2": 2020}
inIn a list{"column": "country_iso_code", "type": "in", "value": ["US", "UK", "CA"]}
likeText search{"column": "name", "type": "like", "value": "Tech"}

Available Columns

Basic Info

ColumnTypeOperatorsDescription
nametext=, like, inCompany name (e.g., “Google”, “Microsoft”)
taglinetext=, likeCompany tagline/slogan
descriptiontext=, likeCompany description
domaintext=, like, inDomain name (e.g., “google.com”, “microsoft.com”)
universal_nametext=, like, inUniversal slug identifier (e.g., “google”, “microsoft”)
keywordtextlikeFull-text search in name/tagline/description
industrytext=, like, inIndustry, lowercase (e.g., software development, it services and it consulting, financial services, business consulting and services, advertising services, hospitals and health care)

Size

ColumnTypeOperatorsDescription
employee_counttext/int=, >, >=, <, <=, between, inNumber of employees or range (1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+)

Headquarters

ColumnTypeOperatorsDescription
country_iso_codetext=, inCountry code ISO 2 letters (e.g., “US”, “FR”, “GB”, “DE”, “CA”)
citytext=, like, inCity name (e.g., “Paris”, “San Francisco”, “London”)
regiontext=, like, inRegion/State (e.g., “California”, “Île-de-France”, “New York”)

Offices

ColumnTypeOperatorsDescription
office_countrytext=, inOffice country code ISO 2 letters
office_citytext=, like, inOffice city name
office_regiontext=, like, inOffice region/state

Growth

ColumnTypeOperatorsDescription
employee_growth_1mfloat=, >, >=, <, <=, betweenEmployee growth percentage over last 1 month
employee_growth_6mfloat=, >, >=, <, <=, betweenEmployee growth percentage over last 6 months
employee_growth_12mfloat=, >, >=, <, <=, betweenEmployee growth percentage over last 12 months
recent_hires_countint=, >, >=, <, <=, betweenNumber of recent hires

Metadata

ColumnTypeOperatorsDescription
founded_yearint=, >, >=, <, <=, betweenYear founded (e.g., 1998, 2010, 2020)
company_typetext=, inCompany type. Values (uppercase, snake_case): PRIVATELY_HELD, PUBLIC_COMPANY, NON_PROFIT, PARTNERSHIP, SELF_OWNED, EDUCATIONAL, SELF_EMPLOYED, GOVERNMENT_AGENCY
follower_countint=, >, >=, <, <=, betweenNumber of followers
page_verifiedbool=Whether company profile is verified (true/false)
categorytext=, like, inCompany category, lowercase (e.g., software, consulting, financial services, e-commerce, health care, manufacturing, marketing, advertising)

Funding

ColumnTypeOperatorsDescription
last_funding_amount_usdint=, >, >=, <, <=, betweenLast funding round amount in USD
last_funding_datedate=, >, >=, <, <=Last funding round date (e.g., “2023-06-15”)
funding_stage_normalizedtext=, like, inCurrent funding stage. Values: seed_round, series_a, series_b, series_c, series_d, series_e, series_f, series_g, series_h, series_unknown, pre_seed_round, angel_round, grant, private_equity_round, debt_financing, convertible_note, corporate_round, equity_crowdfunding, post_ipo_equity, post_ipo_debt, post_ipo_secondary, secondary_market, non_equity_assistance, product_crowdfunding, initial_coin_offering, undisclosed
has_fundingbool=Whether the company has raised funding (true/false)

Complex Query Examples

{
  "filters": {
    "op": "and",
    "conditions": [
      {"column": "industry", "type": "like", "value": "Technology"},
      {"column": "employee_count", "type": ">=", "value": 100},
      {"column": "region", "type": "=", "value": "California"}
    ]
  },
  "count": 50
}
{
  "filters": {
    "op": "and",
    "conditions": [
      {"column": "category", "type": "like", "value": "SaaS"},
      {"column": "founded_year", "type": ">", "value": 2015},
      {"column": "employee_count", "type": "in", "value": ["11-50", "51-200"]}
    ]
  },
  "count": 100
}
{
  "filters": {
    "op": "and",
    "conditions": [
      {"column": "employee_growth_6m", "type": ">=", "value": 20},
      {"column": "country_iso_code", "type": "in", "value": ["US", "UK", "FR"]},
      {"column": "page_verified", "type": "=", "value": true}
    ]
  }
}
{
  "filters": {
    "op": "and",
    "conditions": [
      {"column": "country_iso_code", "type": "=", "value": "US"},
      {
        "op": "or",
        "conditions": [
          {"column": "office_country", "type": "=", "value": "FR"},
          {"column": "office_country", "type": "=", "value": "UK"}
        ]
      }
    ]
  }
}

Response

total
integer
Total number of results matching the filters.
offset
integer
Offset used for pagination.
count
integer
Number of results returned in this response.
results
array
List of companies matching the filters. Each company contains the fields specified by the search columns.

curl -X POST https://api.dataforb2b.ai/search/companies \
  -H "api_key: YOUR_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "filters": {
      "op": "and",
      "conditions": [
        {"column": "industry", "type": "like", "value": "Technology"},
        {"column": "country_iso_code", "type": "=", "value": "US"}
      ]
    },
    "count": 10
  }'
{
  "total": 10000,
  "offset": 0,
  "count": 2,
  "credits_used": 2,
  "results": [
    {
      "id": "org_ABC123xyz",
      "name": "TechCorp Solutions",
      "tagline": "Innovating Tomorrow's Technology Today",
      "description": "TechCorp Solutions is a leading technology company specializing in cloud infrastructure and enterprise software solutions. We help businesses transform digitally through cutting-edge technology and innovative approaches. Our team of 500+ engineers delivers scalable solutions to Fortune 500 companies worldwide.",
      "industry": "software development",
      "headquarters": {
        "country": "US",
        "city": "San Francisco",
        "region": "California"
      },
      "founded_year": 2015,
      "company_type": "PRIVATELY_HELD",
      "logo_url": "https://media.licdn.com/dms/image/...",
      "links": {
        "website": "https://www.techcorp.com",
        "instagram": "https://instagram.com/techcorp",
        "facebook": "https://facebook.com/techcorp",
        "twitter": "https://twitter.com/techcorp",
        "youtube": "https://youtube.com/techcorp",
        "tiktok": null,
        "github": "https://github.com/techcorp",
        "behance": null,
        "spotify": null,
        "whatsapp": null,
        "telegram": null,
        "linktree": null,
        "other": null,
        "linkedin": "https://www.linkedin.com/company/techcorp-solutions"
      },
      "size": {
        "employees": 520,
        "range_min": 501,
        "range_max": 1000
      },
      "metrics": {
        "followers": 25000,
        "active_jobs": 45
      },
      "signals": {
        "verified": true
      },
      "categories": [
        "software",
        "cloud computing",
        "enterprise software"
      ],
      "locations": [
        {
          "country": "US",
          "city": "San Francisco",
          "region": "California",
          "is_headquarters": true
        },
        {
          "country": "US",
          "city": "New York",
          "region": "New York",
          "is_headquarters": false
        },
        {
          "country": "GB",
          "city": "London",
          "region": "England",
          "is_headquarters": false
        }
      ],
      "funding": {
        "last_round_amount_usd": 45000000,
        "last_round_date": "2023-06-15",
        "total_raised_usd": 85000000
      },
      "growth": {
        "percent_1m": 3.2,
        "percent_6m": 18.5,
        "percent_12m": 45.8,
        "recent_hires": 28
      }
    },
    {
      "id": "org_DEF456abc",
      "name": "DataAnalytics Pro",
      "tagline": "Empowering Data-Driven Decisions",
      "description": "DataAnalytics Pro provides advanced analytics and business intelligence solutions for mid-market companies. Our platform helps organizations unlock insights from their data through AI-powered analytics, real-time dashboards, and predictive modeling.",
      "industry": "software development",
      "headquarters": {
        "country": "US",
        "city": "Austin",
        "region": "Texas"
      },
      "founded_year": 2019,
      "company_type": "PRIVATELY_HELD",
      "logo_url": "https://media.licdn.com/dms/image/...",
      "links": {
        "website": "https://www.dataanalyticspro.com",
        "instagram": null,
        "facebook": null,
        "twitter": "https://twitter.com/dataanalyticspro",
        "youtube": null,
        "tiktok": null,
        "github": null,
        "behance": null,
        "spotify": null,
        "whatsapp": null,
        "telegram": null,
        "linktree": null,
        "other": null,
        "linkedin": "https://www.linkedin.com/company/dataanalytics-pro"
      },
      "size": {
        "employees": 85,
        "range_min": 51,
        "range_max": 200
      },
      "metrics": {
        "followers": 4200,
        "active_jobs": 12
      },
      "signals": {
        "verified": false
      },
      "categories": [
        "Analytics",
        "Business Intelligence",
        "Data Science"
      ],
      "locations": [
        {
          "country": "US",
          "city": "Austin",
          "region": "Texas",
          "is_headquarters": true
        }
      ],
      "funding": {
        "last_round_amount_usd": 12000000,
        "last_round_date": "2022-09-12",
        "total_raised_usd": 15000000
      },
      "growth": {
        "percent_1m": 5.6,
        "percent_6m": 25.0,
        "percent_12m": 70.0,
        "recent_hires": 15
      }
    }
  ]
}