Company Search
curl --request POST \
--url https://api.tuesday.so/api/v1/company/search \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <x-api-key>' \
--data '
{
"page": 123,
"per_page": 123,
"funding": "<string>",
"extra": "<string>",
"technology": "<string>",
"website_traffic": "<string>",
"headcount_growth": "<string>",
"person_titles": [
"<string>"
],
"person_not_titles": [
"<string>"
],
"person_past_titles": [
"<string>"
],
"person_seniorities": [
"<string>"
],
"person_location": [
"<string>"
],
"not_person_location": [
"<string>"
],
"person_days_in_current_title_range": {},
"q_organization_domains": [
"<string>"
],
"not_q_organization_domains": [
"<string>"
],
"organization_location": [
"<string>"
],
"not_organization_location": [
"<string>"
],
"organization_industry": [
"<string>"
],
"organization_not_industry": [
"<string>"
],
"organization_sic_industry": [
"<string>"
],
"organization_not_sic_industry": [
"<string>"
],
"organization_naics_industry": [
"<string>"
],
"organization_not_naics_industry": [
"<string>"
],
"organization_revenue_ranges": [
"<string>"
],
"organization_technology": [
"<string>"
],
"organization_all_technology": [
"<string>"
],
"not_organization_technology": [
"<string>"
],
"organization_has_web_app": true,
"organization_has_mobile_app": true,
"organization_appstore_app_category": [
"<string>"
],
"organization_playstore_app_category": [
"<string>"
],
"organization_appstore_rating": {},
"organization_playstore_rating": {},
"organization_appstore_review_count": {},
"organization_playstore_review_count": {},
"organization_is_website_for_sale": true,
"organization_website_traffic_total_monthly": {},
"organization_website_traffic_monthly_organic": {},
"organization_website_traffic_monthly_paid": {},
"organization_monthly_google_adspend": {},
"organization_funding_amount": {},
"organization_funding_total_amount": {},
"organization_funding_date": {},
"organization_funding_type": [
"<string>"
],
"organization_funding_lead_investors": [
"<string>"
],
"organization_funding_number_of_investors": {},
"organization_roles_count": [
{}
],
"organization_open_roles_count": [
{}
]
}
'import requests
url = "https://api.tuesday.so/api/v1/company/search"
payload = {
"page": 123,
"per_page": 123,
"funding": "<string>",
"extra": "<string>",
"technology": "<string>",
"website_traffic": "<string>",
"headcount_growth": "<string>",
"person_titles": ["<string>"],
"person_not_titles": ["<string>"],
"person_past_titles": ["<string>"],
"person_seniorities": ["<string>"],
"person_location": ["<string>"],
"not_person_location": ["<string>"],
"person_days_in_current_title_range": {},
"q_organization_domains": ["<string>"],
"not_q_organization_domains": ["<string>"],
"organization_location": ["<string>"],
"not_organization_location": ["<string>"],
"organization_industry": ["<string>"],
"organization_not_industry": ["<string>"],
"organization_sic_industry": ["<string>"],
"organization_not_sic_industry": ["<string>"],
"organization_naics_industry": ["<string>"],
"organization_not_naics_industry": ["<string>"],
"organization_revenue_ranges": ["<string>"],
"organization_technology": ["<string>"],
"organization_all_technology": ["<string>"],
"not_organization_technology": ["<string>"],
"organization_has_web_app": True,
"organization_has_mobile_app": True,
"organization_appstore_app_category": ["<string>"],
"organization_playstore_app_category": ["<string>"],
"organization_appstore_rating": {},
"organization_playstore_rating": {},
"organization_appstore_review_count": {},
"organization_playstore_review_count": {},
"organization_is_website_for_sale": True,
"organization_website_traffic_total_monthly": {},
"organization_website_traffic_monthly_organic": {},
"organization_website_traffic_monthly_paid": {},
"organization_monthly_google_adspend": {},
"organization_funding_amount": {},
"organization_funding_total_amount": {},
"organization_funding_date": {},
"organization_funding_type": ["<string>"],
"organization_funding_lead_investors": ["<string>"],
"organization_funding_number_of_investors": {},
"organization_roles_count": [{}],
"organization_open_roles_count": [{}]
}
headers = {
"X-API-KEY": "<x-api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<x-api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
page: 123,
per_page: 123,
funding: '<string>',
extra: '<string>',
technology: '<string>',
website_traffic: '<string>',
headcount_growth: '<string>',
person_titles: ['<string>'],
person_not_titles: ['<string>'],
person_past_titles: ['<string>'],
person_seniorities: ['<string>'],
person_location: ['<string>'],
not_person_location: ['<string>'],
person_days_in_current_title_range: {},
q_organization_domains: ['<string>'],
not_q_organization_domains: ['<string>'],
organization_location: ['<string>'],
not_organization_location: ['<string>'],
organization_industry: ['<string>'],
organization_not_industry: ['<string>'],
organization_sic_industry: ['<string>'],
organization_not_sic_industry: ['<string>'],
organization_naics_industry: ['<string>'],
organization_not_naics_industry: ['<string>'],
organization_revenue_ranges: ['<string>'],
organization_technology: ['<string>'],
organization_all_technology: ['<string>'],
not_organization_technology: ['<string>'],
organization_has_web_app: true,
organization_has_mobile_app: true,
organization_appstore_app_category: ['<string>'],
organization_playstore_app_category: ['<string>'],
organization_appstore_rating: {},
organization_playstore_rating: {},
organization_appstore_review_count: {},
organization_playstore_review_count: {},
organization_is_website_for_sale: true,
organization_website_traffic_total_monthly: {},
organization_website_traffic_monthly_organic: {},
organization_website_traffic_monthly_paid: {},
organization_monthly_google_adspend: {},
organization_funding_amount: {},
organization_funding_total_amount: {},
organization_funding_date: {},
organization_funding_type: ['<string>'],
organization_funding_lead_investors: ['<string>'],
organization_funding_number_of_investors: {},
organization_roles_count: [{}],
organization_open_roles_count: [{}]
})
};
fetch('https://api.tuesday.so/api/v1/company/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tuesday.so/api/v1/company/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'page' => 123,
'per_page' => 123,
'funding' => '<string>',
'extra' => '<string>',
'technology' => '<string>',
'website_traffic' => '<string>',
'headcount_growth' => '<string>',
'person_titles' => [
'<string>'
],
'person_not_titles' => [
'<string>'
],
'person_past_titles' => [
'<string>'
],
'person_seniorities' => [
'<string>'
],
'person_location' => [
'<string>'
],
'not_person_location' => [
'<string>'
],
'person_days_in_current_title_range' => [
],
'q_organization_domains' => [
'<string>'
],
'not_q_organization_domains' => [
'<string>'
],
'organization_location' => [
'<string>'
],
'not_organization_location' => [
'<string>'
],
'organization_industry' => [
'<string>'
],
'organization_not_industry' => [
'<string>'
],
'organization_sic_industry' => [
'<string>'
],
'organization_not_sic_industry' => [
'<string>'
],
'organization_naics_industry' => [
'<string>'
],
'organization_not_naics_industry' => [
'<string>'
],
'organization_revenue_ranges' => [
'<string>'
],
'organization_technology' => [
'<string>'
],
'organization_all_technology' => [
'<string>'
],
'not_organization_technology' => [
'<string>'
],
'organization_has_web_app' => true,
'organization_has_mobile_app' => true,
'organization_appstore_app_category' => [
'<string>'
],
'organization_playstore_app_category' => [
'<string>'
],
'organization_appstore_rating' => [
],
'organization_playstore_rating' => [
],
'organization_appstore_review_count' => [
],
'organization_playstore_review_count' => [
],
'organization_is_website_for_sale' => true,
'organization_website_traffic_total_monthly' => [
],
'organization_website_traffic_monthly_organic' => [
],
'organization_website_traffic_monthly_paid' => [
],
'organization_monthly_google_adspend' => [
],
'organization_funding_amount' => [
],
'organization_funding_total_amount' => [
],
'organization_funding_date' => [
],
'organization_funding_type' => [
'<string>'
],
'organization_funding_lead_investors' => [
'<string>'
],
'organization_funding_number_of_investors' => [
],
'organization_roles_count' => [
[
]
],
'organization_open_roles_count' => [
[
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.tuesday.so/api/v1/company/search"
payload := strings.NewReader("{\n \"page\": 123,\n \"per_page\": 123,\n \"funding\": \"<string>\",\n \"extra\": \"<string>\",\n \"technology\": \"<string>\",\n \"website_traffic\": \"<string>\",\n \"headcount_growth\": \"<string>\",\n \"person_titles\": [\n \"<string>\"\n ],\n \"person_not_titles\": [\n \"<string>\"\n ],\n \"person_past_titles\": [\n \"<string>\"\n ],\n \"person_seniorities\": [\n \"<string>\"\n ],\n \"person_location\": [\n \"<string>\"\n ],\n \"not_person_location\": [\n \"<string>\"\n ],\n \"person_days_in_current_title_range\": {},\n \"q_organization_domains\": [\n \"<string>\"\n ],\n \"not_q_organization_domains\": [\n \"<string>\"\n ],\n \"organization_location\": [\n \"<string>\"\n ],\n \"not_organization_location\": [\n \"<string>\"\n ],\n \"organization_industry\": [\n \"<string>\"\n ],\n \"organization_not_industry\": [\n \"<string>\"\n ],\n \"organization_sic_industry\": [\n \"<string>\"\n ],\n \"organization_not_sic_industry\": [\n \"<string>\"\n ],\n \"organization_naics_industry\": [\n \"<string>\"\n ],\n \"organization_not_naics_industry\": [\n \"<string>\"\n ],\n \"organization_revenue_ranges\": [\n \"<string>\"\n ],\n \"organization_technology\": [\n \"<string>\"\n ],\n \"organization_all_technology\": [\n \"<string>\"\n ],\n \"not_organization_technology\": [\n \"<string>\"\n ],\n \"organization_has_web_app\": true,\n \"organization_has_mobile_app\": true,\n \"organization_appstore_app_category\": [\n \"<string>\"\n ],\n \"organization_playstore_app_category\": [\n \"<string>\"\n ],\n \"organization_appstore_rating\": {},\n \"organization_playstore_rating\": {},\n \"organization_appstore_review_count\": {},\n \"organization_playstore_review_count\": {},\n \"organization_is_website_for_sale\": true,\n \"organization_website_traffic_total_monthly\": {},\n \"organization_website_traffic_monthly_organic\": {},\n \"organization_website_traffic_monthly_paid\": {},\n \"organization_monthly_google_adspend\": {},\n \"organization_funding_amount\": {},\n \"organization_funding_total_amount\": {},\n \"organization_funding_date\": {},\n \"organization_funding_type\": [\n \"<string>\"\n ],\n \"organization_funding_lead_investors\": [\n \"<string>\"\n ],\n \"organization_funding_number_of_investors\": {},\n \"organization_roles_count\": [\n {}\n ],\n \"organization_open_roles_count\": [\n {}\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<x-api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.tuesday.so/api/v1/company/search")
.header("X-API-KEY", "<x-api-key>")
.header("Content-Type", "application/json")
.body("{\n \"page\": 123,\n \"per_page\": 123,\n \"funding\": \"<string>\",\n \"extra\": \"<string>\",\n \"technology\": \"<string>\",\n \"website_traffic\": \"<string>\",\n \"headcount_growth\": \"<string>\",\n \"person_titles\": [\n \"<string>\"\n ],\n \"person_not_titles\": [\n \"<string>\"\n ],\n \"person_past_titles\": [\n \"<string>\"\n ],\n \"person_seniorities\": [\n \"<string>\"\n ],\n \"person_location\": [\n \"<string>\"\n ],\n \"not_person_location\": [\n \"<string>\"\n ],\n \"person_days_in_current_title_range\": {},\n \"q_organization_domains\": [\n \"<string>\"\n ],\n \"not_q_organization_domains\": [\n \"<string>\"\n ],\n \"organization_location\": [\n \"<string>\"\n ],\n \"not_organization_location\": [\n \"<string>\"\n ],\n \"organization_industry\": [\n \"<string>\"\n ],\n \"organization_not_industry\": [\n \"<string>\"\n ],\n \"organization_sic_industry\": [\n \"<string>\"\n ],\n \"organization_not_sic_industry\": [\n \"<string>\"\n ],\n \"organization_naics_industry\": [\n \"<string>\"\n ],\n \"organization_not_naics_industry\": [\n \"<string>\"\n ],\n \"organization_revenue_ranges\": [\n \"<string>\"\n ],\n \"organization_technology\": [\n \"<string>\"\n ],\n \"organization_all_technology\": [\n \"<string>\"\n ],\n \"not_organization_technology\": [\n \"<string>\"\n ],\n \"organization_has_web_app\": true,\n \"organization_has_mobile_app\": true,\n \"organization_appstore_app_category\": [\n \"<string>\"\n ],\n \"organization_playstore_app_category\": [\n \"<string>\"\n ],\n \"organization_appstore_rating\": {},\n \"organization_playstore_rating\": {},\n \"organization_appstore_review_count\": {},\n \"organization_playstore_review_count\": {},\n \"organization_is_website_for_sale\": true,\n \"organization_website_traffic_total_monthly\": {},\n \"organization_website_traffic_monthly_organic\": {},\n \"organization_website_traffic_monthly_paid\": {},\n \"organization_monthly_google_adspend\": {},\n \"organization_funding_amount\": {},\n \"organization_funding_total_amount\": {},\n \"organization_funding_date\": {},\n \"organization_funding_type\": [\n \"<string>\"\n ],\n \"organization_funding_lead_investors\": [\n \"<string>\"\n ],\n \"organization_funding_number_of_investors\": {},\n \"organization_roles_count\": [\n {}\n ],\n \"organization_open_roles_count\": [\n {}\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tuesday.so/api/v1/company/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<x-api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"page\": 123,\n \"per_page\": 123,\n \"funding\": \"<string>\",\n \"extra\": \"<string>\",\n \"technology\": \"<string>\",\n \"website_traffic\": \"<string>\",\n \"headcount_growth\": \"<string>\",\n \"person_titles\": [\n \"<string>\"\n ],\n \"person_not_titles\": [\n \"<string>\"\n ],\n \"person_past_titles\": [\n \"<string>\"\n ],\n \"person_seniorities\": [\n \"<string>\"\n ],\n \"person_location\": [\n \"<string>\"\n ],\n \"not_person_location\": [\n \"<string>\"\n ],\n \"person_days_in_current_title_range\": {},\n \"q_organization_domains\": [\n \"<string>\"\n ],\n \"not_q_organization_domains\": [\n \"<string>\"\n ],\n \"organization_location\": [\n \"<string>\"\n ],\n \"not_organization_location\": [\n \"<string>\"\n ],\n \"organization_industry\": [\n \"<string>\"\n ],\n \"organization_not_industry\": [\n \"<string>\"\n ],\n \"organization_sic_industry\": [\n \"<string>\"\n ],\n \"organization_not_sic_industry\": [\n \"<string>\"\n ],\n \"organization_naics_industry\": [\n \"<string>\"\n ],\n \"organization_not_naics_industry\": [\n \"<string>\"\n ],\n \"organization_revenue_ranges\": [\n \"<string>\"\n ],\n \"organization_technology\": [\n \"<string>\"\n ],\n \"organization_all_technology\": [\n \"<string>\"\n ],\n \"not_organization_technology\": [\n \"<string>\"\n ],\n \"organization_has_web_app\": true,\n \"organization_has_mobile_app\": true,\n \"organization_appstore_app_category\": [\n \"<string>\"\n ],\n \"organization_playstore_app_category\": [\n \"<string>\"\n ],\n \"organization_appstore_rating\": {},\n \"organization_playstore_rating\": {},\n \"organization_appstore_review_count\": {},\n \"organization_playstore_review_count\": {},\n \"organization_is_website_for_sale\": true,\n \"organization_website_traffic_total_monthly\": {},\n \"organization_website_traffic_monthly_organic\": {},\n \"organization_website_traffic_monthly_paid\": {},\n \"organization_monthly_google_adspend\": {},\n \"organization_funding_amount\": {},\n \"organization_funding_total_amount\": {},\n \"organization_funding_date\": {},\n \"organization_funding_type\": [\n \"<string>\"\n ],\n \"organization_funding_lead_investors\": [\n \"<string>\"\n ],\n \"organization_funding_number_of_investors\": {},\n \"organization_roles_count\": [\n {}\n ],\n \"organization_open_roles_count\": [\n {}\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"about_us": "Welcome to the official page of Cartão de TODOS on LinkedIn! We are pioneers in the country, with a successful and established business model, serving over 5 million families in all Brazilian states.",
"appstore.app_category": "Finance",
"appstore.last_update": "2024-01-11",
"appstore.top_rating": 4.9,
"appstore.top_review_count": 32935,
"appstore.top_url": "https://apps.apple.com/br/app/id1536693230",
"appstore.update_count": 25,
"city": "Ipatinga",
"country": "Brazil",
"country_code": "BR",
"country_region": "LATAM",
"employee_count_range": "5001 to 10000",
"employee_on_linkedin_growth_rate": 3,
"has_cio": "Unknown",
"has_ciso": "Unknown",
"has_mobile_app": true,
"has_web_app": false,
"headquarters.city": "Ipatinga",
"headquarters.country_name": "Brazil",
"headquarters.state": "Minas Gerais",
"id": "tu_oacdlz2wb",
"industry": "Wellness and Fitness Services",
"industry_details.naics_code": "541611;541512;459999",
"industry_details.naics_description": "Administrative Management and General Management Consulting Services;Computer Systems Design Services;All Other Miscellaneous Retailers",
"is_linkedin_url_claimed": "true",
"is_website_for_sale": false,
"linkedin_url": "https://www.linkedin.com/company/cartao-de-todos",
"location_continent": "South America",
"location_count": 1,
"name": "Cartão De Todos",
"playstore.app_category": "Finance",
"playstore.download_count": 5028400,
"playstore.last_update": "2024-01-09",
"playstore.top_rating": 3,
"playstore.top_review_count": 399303,
"playstore.top_url": "https://play.google.com/store/apps/details?id=com.cartaodetodoswalletapp",
"postcode": "35162-399",
"primary_domain": "cartaodetodos.com.br",
"role_count.business_development": 1,
"role_count.engineer": 1,
"role_count.it": 27,
"role_count.marketing": 45,
"role_count.sales": 3,
"specialties": "clínica médica;serviços;saúde;odontologia;educação a distância;lazer;descontos",
"state": "Minas Gerais",
"street": "37 Rua Dom Pedro Ii",
"technologies.automation": "Hubspot",
"technologies.cloud_provider": "Microsoft Azure",
"technologies.cms": "Hubspot",
"technologies.crm": "Hubspot",
"technologies.email_hosting": "Microsoft",
"total_reviews": 432238,
"website_traffic.monthly_organic": 94,
"website_traffic.total_monthly": 94,
"website_url": "https://cartaodetodos.com.br"
},
{
"about_us": "Seal Distributors Inc is a company specializing in the Fluid Sealing industry and is located at 200 Tech Dr, Sanford, Florida, United States.",
"city": "Sanford",
"country": "United States",
"country_code": "US",
"country_region": "NORAM",
"employee_count_range": "11 to 50",
"founded_year": 1985,
"has_cio": "Unknown",
"has_ciso": "Unknown",
"has_mobile_app": false,
"has_web_app": false,
"headquarters.city": "Sanford",
"headquarters.country_name": "United States",
"headquarters.state": "Florida",
"id": "tu_oab7ugt2z",
"industry": "Wholesale",
"industry_details.naics_code": "423840;339991;325520",
"industry_details.naics_description": "Industrial Supplies Merchant Wholesalers;Gasket; Packing; and Sealing Device Manufacturing;Adhesive Manufacturing",
"is_linkedin_url_claimed": "true",
"is_website_for_sale": false,
"linkedin_url": "https://www.linkedin.com/company/seal-distributors-inc",
"location_continent": "North America",
"location_count": 1,
"name": "Seal Distributors Inc",
"phone": "+1 800-334-1711",
"postcode": "32771-6662",
"primary_domain": "sealdistributors.com",
"revenue_range": "$1M to <$10M",
"role_count.sales": 3,
"state": "Florida",
"street": "200 Tech Dr",
"valid_email_count": "5",
"website_traffic.monthly_organic": 163,
"website_traffic.total_monthly": 163,
"website_url": "https://www.sealdistributors.com"
}
],
"statusCode": 201,
"message": "Success"
}
Company APIs
Company Search
Search across organizational records using a rich set of filters
POST
/
api
/
v1
/
company
/
search
Company Search
curl --request POST \
--url https://api.tuesday.so/api/v1/company/search \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <x-api-key>' \
--data '
{
"page": 123,
"per_page": 123,
"funding": "<string>",
"extra": "<string>",
"technology": "<string>",
"website_traffic": "<string>",
"headcount_growth": "<string>",
"person_titles": [
"<string>"
],
"person_not_titles": [
"<string>"
],
"person_past_titles": [
"<string>"
],
"person_seniorities": [
"<string>"
],
"person_location": [
"<string>"
],
"not_person_location": [
"<string>"
],
"person_days_in_current_title_range": {},
"q_organization_domains": [
"<string>"
],
"not_q_organization_domains": [
"<string>"
],
"organization_location": [
"<string>"
],
"not_organization_location": [
"<string>"
],
"organization_industry": [
"<string>"
],
"organization_not_industry": [
"<string>"
],
"organization_sic_industry": [
"<string>"
],
"organization_not_sic_industry": [
"<string>"
],
"organization_naics_industry": [
"<string>"
],
"organization_not_naics_industry": [
"<string>"
],
"organization_revenue_ranges": [
"<string>"
],
"organization_technology": [
"<string>"
],
"organization_all_technology": [
"<string>"
],
"not_organization_technology": [
"<string>"
],
"organization_has_web_app": true,
"organization_has_mobile_app": true,
"organization_appstore_app_category": [
"<string>"
],
"organization_playstore_app_category": [
"<string>"
],
"organization_appstore_rating": {},
"organization_playstore_rating": {},
"organization_appstore_review_count": {},
"organization_playstore_review_count": {},
"organization_is_website_for_sale": true,
"organization_website_traffic_total_monthly": {},
"organization_website_traffic_monthly_organic": {},
"organization_website_traffic_monthly_paid": {},
"organization_monthly_google_adspend": {},
"organization_funding_amount": {},
"organization_funding_total_amount": {},
"organization_funding_date": {},
"organization_funding_type": [
"<string>"
],
"organization_funding_lead_investors": [
"<string>"
],
"organization_funding_number_of_investors": {},
"organization_roles_count": [
{}
],
"organization_open_roles_count": [
{}
]
}
'import requests
url = "https://api.tuesday.so/api/v1/company/search"
payload = {
"page": 123,
"per_page": 123,
"funding": "<string>",
"extra": "<string>",
"technology": "<string>",
"website_traffic": "<string>",
"headcount_growth": "<string>",
"person_titles": ["<string>"],
"person_not_titles": ["<string>"],
"person_past_titles": ["<string>"],
"person_seniorities": ["<string>"],
"person_location": ["<string>"],
"not_person_location": ["<string>"],
"person_days_in_current_title_range": {},
"q_organization_domains": ["<string>"],
"not_q_organization_domains": ["<string>"],
"organization_location": ["<string>"],
"not_organization_location": ["<string>"],
"organization_industry": ["<string>"],
"organization_not_industry": ["<string>"],
"organization_sic_industry": ["<string>"],
"organization_not_sic_industry": ["<string>"],
"organization_naics_industry": ["<string>"],
"organization_not_naics_industry": ["<string>"],
"organization_revenue_ranges": ["<string>"],
"organization_technology": ["<string>"],
"organization_all_technology": ["<string>"],
"not_organization_technology": ["<string>"],
"organization_has_web_app": True,
"organization_has_mobile_app": True,
"organization_appstore_app_category": ["<string>"],
"organization_playstore_app_category": ["<string>"],
"organization_appstore_rating": {},
"organization_playstore_rating": {},
"organization_appstore_review_count": {},
"organization_playstore_review_count": {},
"organization_is_website_for_sale": True,
"organization_website_traffic_total_monthly": {},
"organization_website_traffic_monthly_organic": {},
"organization_website_traffic_monthly_paid": {},
"organization_monthly_google_adspend": {},
"organization_funding_amount": {},
"organization_funding_total_amount": {},
"organization_funding_date": {},
"organization_funding_type": ["<string>"],
"organization_funding_lead_investors": ["<string>"],
"organization_funding_number_of_investors": {},
"organization_roles_count": [{}],
"organization_open_roles_count": [{}]
}
headers = {
"X-API-KEY": "<x-api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<x-api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
page: 123,
per_page: 123,
funding: '<string>',
extra: '<string>',
technology: '<string>',
website_traffic: '<string>',
headcount_growth: '<string>',
person_titles: ['<string>'],
person_not_titles: ['<string>'],
person_past_titles: ['<string>'],
person_seniorities: ['<string>'],
person_location: ['<string>'],
not_person_location: ['<string>'],
person_days_in_current_title_range: {},
q_organization_domains: ['<string>'],
not_q_organization_domains: ['<string>'],
organization_location: ['<string>'],
not_organization_location: ['<string>'],
organization_industry: ['<string>'],
organization_not_industry: ['<string>'],
organization_sic_industry: ['<string>'],
organization_not_sic_industry: ['<string>'],
organization_naics_industry: ['<string>'],
organization_not_naics_industry: ['<string>'],
organization_revenue_ranges: ['<string>'],
organization_technology: ['<string>'],
organization_all_technology: ['<string>'],
not_organization_technology: ['<string>'],
organization_has_web_app: true,
organization_has_mobile_app: true,
organization_appstore_app_category: ['<string>'],
organization_playstore_app_category: ['<string>'],
organization_appstore_rating: {},
organization_playstore_rating: {},
organization_appstore_review_count: {},
organization_playstore_review_count: {},
organization_is_website_for_sale: true,
organization_website_traffic_total_monthly: {},
organization_website_traffic_monthly_organic: {},
organization_website_traffic_monthly_paid: {},
organization_monthly_google_adspend: {},
organization_funding_amount: {},
organization_funding_total_amount: {},
organization_funding_date: {},
organization_funding_type: ['<string>'],
organization_funding_lead_investors: ['<string>'],
organization_funding_number_of_investors: {},
organization_roles_count: [{}],
organization_open_roles_count: [{}]
})
};
fetch('https://api.tuesday.so/api/v1/company/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tuesday.so/api/v1/company/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'page' => 123,
'per_page' => 123,
'funding' => '<string>',
'extra' => '<string>',
'technology' => '<string>',
'website_traffic' => '<string>',
'headcount_growth' => '<string>',
'person_titles' => [
'<string>'
],
'person_not_titles' => [
'<string>'
],
'person_past_titles' => [
'<string>'
],
'person_seniorities' => [
'<string>'
],
'person_location' => [
'<string>'
],
'not_person_location' => [
'<string>'
],
'person_days_in_current_title_range' => [
],
'q_organization_domains' => [
'<string>'
],
'not_q_organization_domains' => [
'<string>'
],
'organization_location' => [
'<string>'
],
'not_organization_location' => [
'<string>'
],
'organization_industry' => [
'<string>'
],
'organization_not_industry' => [
'<string>'
],
'organization_sic_industry' => [
'<string>'
],
'organization_not_sic_industry' => [
'<string>'
],
'organization_naics_industry' => [
'<string>'
],
'organization_not_naics_industry' => [
'<string>'
],
'organization_revenue_ranges' => [
'<string>'
],
'organization_technology' => [
'<string>'
],
'organization_all_technology' => [
'<string>'
],
'not_organization_technology' => [
'<string>'
],
'organization_has_web_app' => true,
'organization_has_mobile_app' => true,
'organization_appstore_app_category' => [
'<string>'
],
'organization_playstore_app_category' => [
'<string>'
],
'organization_appstore_rating' => [
],
'organization_playstore_rating' => [
],
'organization_appstore_review_count' => [
],
'organization_playstore_review_count' => [
],
'organization_is_website_for_sale' => true,
'organization_website_traffic_total_monthly' => [
],
'organization_website_traffic_monthly_organic' => [
],
'organization_website_traffic_monthly_paid' => [
],
'organization_monthly_google_adspend' => [
],
'organization_funding_amount' => [
],
'organization_funding_total_amount' => [
],
'organization_funding_date' => [
],
'organization_funding_type' => [
'<string>'
],
'organization_funding_lead_investors' => [
'<string>'
],
'organization_funding_number_of_investors' => [
],
'organization_roles_count' => [
[
]
],
'organization_open_roles_count' => [
[
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.tuesday.so/api/v1/company/search"
payload := strings.NewReader("{\n \"page\": 123,\n \"per_page\": 123,\n \"funding\": \"<string>\",\n \"extra\": \"<string>\",\n \"technology\": \"<string>\",\n \"website_traffic\": \"<string>\",\n \"headcount_growth\": \"<string>\",\n \"person_titles\": [\n \"<string>\"\n ],\n \"person_not_titles\": [\n \"<string>\"\n ],\n \"person_past_titles\": [\n \"<string>\"\n ],\n \"person_seniorities\": [\n \"<string>\"\n ],\n \"person_location\": [\n \"<string>\"\n ],\n \"not_person_location\": [\n \"<string>\"\n ],\n \"person_days_in_current_title_range\": {},\n \"q_organization_domains\": [\n \"<string>\"\n ],\n \"not_q_organization_domains\": [\n \"<string>\"\n ],\n \"organization_location\": [\n \"<string>\"\n ],\n \"not_organization_location\": [\n \"<string>\"\n ],\n \"organization_industry\": [\n \"<string>\"\n ],\n \"organization_not_industry\": [\n \"<string>\"\n ],\n \"organization_sic_industry\": [\n \"<string>\"\n ],\n \"organization_not_sic_industry\": [\n \"<string>\"\n ],\n \"organization_naics_industry\": [\n \"<string>\"\n ],\n \"organization_not_naics_industry\": [\n \"<string>\"\n ],\n \"organization_revenue_ranges\": [\n \"<string>\"\n ],\n \"organization_technology\": [\n \"<string>\"\n ],\n \"organization_all_technology\": [\n \"<string>\"\n ],\n \"not_organization_technology\": [\n \"<string>\"\n ],\n \"organization_has_web_app\": true,\n \"organization_has_mobile_app\": true,\n \"organization_appstore_app_category\": [\n \"<string>\"\n ],\n \"organization_playstore_app_category\": [\n \"<string>\"\n ],\n \"organization_appstore_rating\": {},\n \"organization_playstore_rating\": {},\n \"organization_appstore_review_count\": {},\n \"organization_playstore_review_count\": {},\n \"organization_is_website_for_sale\": true,\n \"organization_website_traffic_total_monthly\": {},\n \"organization_website_traffic_monthly_organic\": {},\n \"organization_website_traffic_monthly_paid\": {},\n \"organization_monthly_google_adspend\": {},\n \"organization_funding_amount\": {},\n \"organization_funding_total_amount\": {},\n \"organization_funding_date\": {},\n \"organization_funding_type\": [\n \"<string>\"\n ],\n \"organization_funding_lead_investors\": [\n \"<string>\"\n ],\n \"organization_funding_number_of_investors\": {},\n \"organization_roles_count\": [\n {}\n ],\n \"organization_open_roles_count\": [\n {}\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<x-api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.tuesday.so/api/v1/company/search")
.header("X-API-KEY", "<x-api-key>")
.header("Content-Type", "application/json")
.body("{\n \"page\": 123,\n \"per_page\": 123,\n \"funding\": \"<string>\",\n \"extra\": \"<string>\",\n \"technology\": \"<string>\",\n \"website_traffic\": \"<string>\",\n \"headcount_growth\": \"<string>\",\n \"person_titles\": [\n \"<string>\"\n ],\n \"person_not_titles\": [\n \"<string>\"\n ],\n \"person_past_titles\": [\n \"<string>\"\n ],\n \"person_seniorities\": [\n \"<string>\"\n ],\n \"person_location\": [\n \"<string>\"\n ],\n \"not_person_location\": [\n \"<string>\"\n ],\n \"person_days_in_current_title_range\": {},\n \"q_organization_domains\": [\n \"<string>\"\n ],\n \"not_q_organization_domains\": [\n \"<string>\"\n ],\n \"organization_location\": [\n \"<string>\"\n ],\n \"not_organization_location\": [\n \"<string>\"\n ],\n \"organization_industry\": [\n \"<string>\"\n ],\n \"organization_not_industry\": [\n \"<string>\"\n ],\n \"organization_sic_industry\": [\n \"<string>\"\n ],\n \"organization_not_sic_industry\": [\n \"<string>\"\n ],\n \"organization_naics_industry\": [\n \"<string>\"\n ],\n \"organization_not_naics_industry\": [\n \"<string>\"\n ],\n \"organization_revenue_ranges\": [\n \"<string>\"\n ],\n \"organization_technology\": [\n \"<string>\"\n ],\n \"organization_all_technology\": [\n \"<string>\"\n ],\n \"not_organization_technology\": [\n \"<string>\"\n ],\n \"organization_has_web_app\": true,\n \"organization_has_mobile_app\": true,\n \"organization_appstore_app_category\": [\n \"<string>\"\n ],\n \"organization_playstore_app_category\": [\n \"<string>\"\n ],\n \"organization_appstore_rating\": {},\n \"organization_playstore_rating\": {},\n \"organization_appstore_review_count\": {},\n \"organization_playstore_review_count\": {},\n \"organization_is_website_for_sale\": true,\n \"organization_website_traffic_total_monthly\": {},\n \"organization_website_traffic_monthly_organic\": {},\n \"organization_website_traffic_monthly_paid\": {},\n \"organization_monthly_google_adspend\": {},\n \"organization_funding_amount\": {},\n \"organization_funding_total_amount\": {},\n \"organization_funding_date\": {},\n \"organization_funding_type\": [\n \"<string>\"\n ],\n \"organization_funding_lead_investors\": [\n \"<string>\"\n ],\n \"organization_funding_number_of_investors\": {},\n \"organization_roles_count\": [\n {}\n ],\n \"organization_open_roles_count\": [\n {}\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tuesday.so/api/v1/company/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<x-api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"page\": 123,\n \"per_page\": 123,\n \"funding\": \"<string>\",\n \"extra\": \"<string>\",\n \"technology\": \"<string>\",\n \"website_traffic\": \"<string>\",\n \"headcount_growth\": \"<string>\",\n \"person_titles\": [\n \"<string>\"\n ],\n \"person_not_titles\": [\n \"<string>\"\n ],\n \"person_past_titles\": [\n \"<string>\"\n ],\n \"person_seniorities\": [\n \"<string>\"\n ],\n \"person_location\": [\n \"<string>\"\n ],\n \"not_person_location\": [\n \"<string>\"\n ],\n \"person_days_in_current_title_range\": {},\n \"q_organization_domains\": [\n \"<string>\"\n ],\n \"not_q_organization_domains\": [\n \"<string>\"\n ],\n \"organization_location\": [\n \"<string>\"\n ],\n \"not_organization_location\": [\n \"<string>\"\n ],\n \"organization_industry\": [\n \"<string>\"\n ],\n \"organization_not_industry\": [\n \"<string>\"\n ],\n \"organization_sic_industry\": [\n \"<string>\"\n ],\n \"organization_not_sic_industry\": [\n \"<string>\"\n ],\n \"organization_naics_industry\": [\n \"<string>\"\n ],\n \"organization_not_naics_industry\": [\n \"<string>\"\n ],\n \"organization_revenue_ranges\": [\n \"<string>\"\n ],\n \"organization_technology\": [\n \"<string>\"\n ],\n \"organization_all_technology\": [\n \"<string>\"\n ],\n \"not_organization_technology\": [\n \"<string>\"\n ],\n \"organization_has_web_app\": true,\n \"organization_has_mobile_app\": true,\n \"organization_appstore_app_category\": [\n \"<string>\"\n ],\n \"organization_playstore_app_category\": [\n \"<string>\"\n ],\n \"organization_appstore_rating\": {},\n \"organization_playstore_rating\": {},\n \"organization_appstore_review_count\": {},\n \"organization_playstore_review_count\": {},\n \"organization_is_website_for_sale\": true,\n \"organization_website_traffic_total_monthly\": {},\n \"organization_website_traffic_monthly_organic\": {},\n \"organization_website_traffic_monthly_paid\": {},\n \"organization_monthly_google_adspend\": {},\n \"organization_funding_amount\": {},\n \"organization_funding_total_amount\": {},\n \"organization_funding_date\": {},\n \"organization_funding_type\": [\n \"<string>\"\n ],\n \"organization_funding_lead_investors\": [\n \"<string>\"\n ],\n \"organization_funding_number_of_investors\": {},\n \"organization_roles_count\": [\n {}\n ],\n \"organization_open_roles_count\": [\n {}\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"about_us": "Welcome to the official page of Cartão de TODOS on LinkedIn! We are pioneers in the country, with a successful and established business model, serving over 5 million families in all Brazilian states.",
"appstore.app_category": "Finance",
"appstore.last_update": "2024-01-11",
"appstore.top_rating": 4.9,
"appstore.top_review_count": 32935,
"appstore.top_url": "https://apps.apple.com/br/app/id1536693230",
"appstore.update_count": 25,
"city": "Ipatinga",
"country": "Brazil",
"country_code": "BR",
"country_region": "LATAM",
"employee_count_range": "5001 to 10000",
"employee_on_linkedin_growth_rate": 3,
"has_cio": "Unknown",
"has_ciso": "Unknown",
"has_mobile_app": true,
"has_web_app": false,
"headquarters.city": "Ipatinga",
"headquarters.country_name": "Brazil",
"headquarters.state": "Minas Gerais",
"id": "tu_oacdlz2wb",
"industry": "Wellness and Fitness Services",
"industry_details.naics_code": "541611;541512;459999",
"industry_details.naics_description": "Administrative Management and General Management Consulting Services;Computer Systems Design Services;All Other Miscellaneous Retailers",
"is_linkedin_url_claimed": "true",
"is_website_for_sale": false,
"linkedin_url": "https://www.linkedin.com/company/cartao-de-todos",
"location_continent": "South America",
"location_count": 1,
"name": "Cartão De Todos",
"playstore.app_category": "Finance",
"playstore.download_count": 5028400,
"playstore.last_update": "2024-01-09",
"playstore.top_rating": 3,
"playstore.top_review_count": 399303,
"playstore.top_url": "https://play.google.com/store/apps/details?id=com.cartaodetodoswalletapp",
"postcode": "35162-399",
"primary_domain": "cartaodetodos.com.br",
"role_count.business_development": 1,
"role_count.engineer": 1,
"role_count.it": 27,
"role_count.marketing": 45,
"role_count.sales": 3,
"specialties": "clínica médica;serviços;saúde;odontologia;educação a distância;lazer;descontos",
"state": "Minas Gerais",
"street": "37 Rua Dom Pedro Ii",
"technologies.automation": "Hubspot",
"technologies.cloud_provider": "Microsoft Azure",
"technologies.cms": "Hubspot",
"technologies.crm": "Hubspot",
"technologies.email_hosting": "Microsoft",
"total_reviews": 432238,
"website_traffic.monthly_organic": 94,
"website_traffic.total_monthly": 94,
"website_url": "https://cartaodetodos.com.br"
},
{
"about_us": "Seal Distributors Inc is a company specializing in the Fluid Sealing industry and is located at 200 Tech Dr, Sanford, Florida, United States.",
"city": "Sanford",
"country": "United States",
"country_code": "US",
"country_region": "NORAM",
"employee_count_range": "11 to 50",
"founded_year": 1985,
"has_cio": "Unknown",
"has_ciso": "Unknown",
"has_mobile_app": false,
"has_web_app": false,
"headquarters.city": "Sanford",
"headquarters.country_name": "United States",
"headquarters.state": "Florida",
"id": "tu_oab7ugt2z",
"industry": "Wholesale",
"industry_details.naics_code": "423840;339991;325520",
"industry_details.naics_description": "Industrial Supplies Merchant Wholesalers;Gasket; Packing; and Sealing Device Manufacturing;Adhesive Manufacturing",
"is_linkedin_url_claimed": "true",
"is_website_for_sale": false,
"linkedin_url": "https://www.linkedin.com/company/seal-distributors-inc",
"location_continent": "North America",
"location_count": 1,
"name": "Seal Distributors Inc",
"phone": "+1 800-334-1711",
"postcode": "32771-6662",
"primary_domain": "sealdistributors.com",
"revenue_range": "$1M to <$10M",
"role_count.sales": 3,
"state": "Florida",
"street": "200 Tech Dr",
"valid_email_count": "5",
"website_traffic.monthly_organic": 163,
"website_traffic.total_monthly": 163,
"website_url": "https://www.sealdistributors.com"
}
],
"statusCode": 201,
"message": "Success"
}
Overview
Search for companies using advanced filters including industry, size, location, funding stage, technology, and growth metrics. Perfect for prospecting, market research, competitive analysis, and building targeted company lists.Authentication
Your Tuesday API key
Request Parameters
All parameters are optional. Combine them to filter results precisely.📄 Pagination
Page number
Results per page (max: 100)
Include funding detailsOptions:
include | excludeAdditional Cost: +1 credit per result when set to includeInclude extended company detailsOptions:
include | excludeAdditional Cost: +1 credit per result when set to includeInclude technology detailsOptions:
include | excludeAdditional Cost: +2 credits per result when set to includeInclude website traffic detailsOptions:
include | excludeAdditional Cost: +1 credit per result when set to includeInclude headcount growth detailsOptions:
include | excludeAdditional Cost: +1 credit per result when set to include👤 Person Filters
Current job titles to includeExamples:
["CEO", "CTO", "Software Engineer"]Exclude these current job titles
Match against past job titles
Filter by seniority levelExamples:
["C-Team", "Manager", "Director"]Current person locationExamples:
["San Francisco", "California", "United States"]Exclude people in these locations
Days in current role/titleFormat:
{"min": 30, "max": 300}🏢 Organization Filters
Match organization domainsExamples:
["google.com", "microsoft.com"]Exclude organizations with these domains
Company HQ/locationExamples:
["San Francisco", "California", "United States"]Exclude companies in these locations
Include companies in these industriesExamples:
["Technology", "Healthcare", "Finance"]Exclude companies from these industries
Filter by SIC codesExamples:
["0919"]Exclude SIC codes
Filter by NAICS codesExamples:
["236117"]Exclude NAICS codes
Revenue rangesExamples:
["<$1M", "$1M-$10M", "$10M-$50M"]📱 Technology & Product Filters
Include if they use any of these toolsExamples:
["Salesforce", "AWS", "React"]Must use all listed technologies
Exclude if using any of these technologies
Has a web application?
Has a mobile application?
AppStore categoriesExamples:
["News", "Finance"]PlayStore categoriesExamples:
["Car race", "Games"]iOS app rating (1–5)Format:
{"min": 4, "max": 5}Android app rating (1–5)Format:
{"min": 4, "max": 5}Number of iOS reviewsFormat:
{"min": 100, "max": 10000}Number of Android reviewsFormat:
{"min": 100, "max": 10000}Website listed for sale?
📈 Web Traffic & Ads
Total monthly visitsFormat:
{"min": 1000, "max": 100000}Monthly organic trafficFormat:
{"min": 1000, "max": 100000}Monthly paid trafficFormat:
{"min": 1000, "max": 100000}Estimated monthly Google Ads spend ($)Format:
{"min": 1000, "max": 50000}💰 Funding Filters
Last round amountFormat:
{"min": 1000000, "max": 100000000}Total raised fundingFormat:
{"min": 1000000, "max": 100000000}Months since last funding roundFormat:
{"min": 1, "max": 24}Funding stageExamples:
["Seed", "Series A", "Series B"]Names of lead investors
Number of investors in the last roundFormat:
{"min": 1, "max": 10}👨💼 Team & Roles
Role distribution by department & rangeFormat:
[{"department": "android_dev", "range": {"min": 1, "max": 100}}]Open roles per department with rangeFormat:
[{"department": "sales", "range": {"min": 1, "max": 10}}]Response
Show Array of Company Objects
Show Array of Company Objects
Unique identifier for the company
Company name
Company description
LinkedIn company page URL
Primary website URL
Primary domain name
Primary industry
Company specialities and focus areas (semicolon-separated)
Year founded
Employee count range (e.g., “11 to 50”)
LinkedIn employee growth rate (percentage)
Company city
Company state/region
Company country
ISO country code
Geographic region (NORAM, EMEA, APAC, LATAM)
Headquarters location details (flattened)
Company phone number
Postal code
Street address
Revenue range (e.g., “1Mto<10M”)
Has CIO position (“Yes”, “No”, “Unknown”)
Has CISO position (“Yes”, “No”, “Unknown”)
Has mobile application
Has web application
Website listed for sale
LinkedIn URL claimed status
Continent location
Number of locations
Number of valid email addresses
Role counts by department (flattened)
Open role counts by department (flattened)
Industry classification details (flattened)
Technology stack details (flattened)
Website traffic metrics (flattened)
App Store details (flattened)
Play Store details (flattened)
Monthly Google Ads spend
Total app reviews
HTTP status code (201 for success)
Response message
Example Requests
curl --location 'https://api.tuesday.so/api/v1/company/search' \
--header 'X-API-KEY: your-api-key-here' \
--header 'Content-Type: application/json' \
--data '{
"page": 1,
"per_page": 25,
"person_titles": ["Software Engineer"],
"funding": "include",
"technology": "include",
"website_traffic": "include",
"headcount_growth": "include",
"extra": "include"
}'
curl --location 'https://api.tuesday.so/api/v1/company/search' \
--header 'X-API-KEY: your-api-key-here' \
--header 'Content-Type: application/json' \
--data '{
"page": 1,
"per_page": 25,
"organization_industry": ["E-commerce"],
"organization_funding_type": ["Series A"],
"funding": "include"
}'
curl --location 'https://api.tuesday.so/api/v1/company/search' \
--header 'X-API-KEY: your-api-key-here' \
--header 'Content-Type: application/json' \
--data '{
"page": 1,
"per_page": 25,
"organization_industry": ["Technology"],
"organization_location": ["United States"],
"extra": "include"
}'
const searchCompanies = async (payload) => {
const response = await fetch(
'https://api.tuesday.so/api/v1/company/search',
{
method: 'POST',
headers: {
'X-API-KEY': 'your-api-key-here',
'Content-Type': 'application/json'
},
body: JSON.stringify(payload)
}
);
const results = await response.json();
return results;
};
// Usage Examples
const techStartups = await searchCompanies({
page: 1,
per_page: 25,
organization_industry: ['Technology'],
person_titles: ['Software Engineer'],
funding: 'include',
technology: 'include'
});
const aiCompanies = await searchCompanies({
page: 1,
per_page: 25,
organization_technology: ['artificial intelligence'],
organization_funding_type: ['Series A'],
funding: 'include'
});
const ecommerceScale = await searchCompanies({
page: 1,
per_page: 25,
organization_industry: ['E-commerce'],
organization_technology: ['Shopify'],
extra: 'include'
});
console.log(`Found ${techStartups.data.length} tech startups`);
import requests
def search_companies(payload):
url = "https://api.tuesday.so/api/v1/company/search"
headers = {
'X-API-KEY': 'your-api-key-here',
'Content-Type': 'application/json'
}
response = requests.post(url, json=payload, headers=headers)
return response.json()
# Usage Examples
# Find SaaS companies in growth stage
saas_companies = search_companies({
"page": 1,
"per_page": 25,
"organization_industry": ["SaaS"],
"person_titles": ["Software Engineer"],
"funding": "include",
"technology": "include"
})
# Find well-funded AI startups
ai_startups = search_companies({
"page": 1,
"per_page": 25,
"organization_technology": ["artificial intelligence", "machine learning"],
"organization_funding_type": ["Series B"],
"funding": "include"
})
# Find tech companies using specific technology
react_companies = search_companies({
"page": 1,
"per_page": 25,
"organization_technology": ["React"],
"organization_industry": ["Technology"],
"organization_location": ["California"],
"technology": "include"
})
for company in saas_companies['data']:
print(f"{company['name']} - {company.get('employee_count_range', 'N/A')} employees")
print(f"Founded: {company.get('founded_year', 'N/A')} | Industry: {company.get('industry', 'N/A')}")
print("---")
<?php
function searchCompanies($payload) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.tuesday.so/api/v1/company/search");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-KEY: your-api-key-here',
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
return json_decode($response, true);
}
// Usage Examples
$fintechStartups = searchCompanies([
'page' => 1,
'per_page' => 25,
'organization_industry' => ['Fintech'],
'person_titles' => ['Software Engineer'],
'funding' => 'include',
'technology' => 'include'
]);
$techGiants = searchCompanies([
'page' => 1,
'per_page' => 25,
'organization_industry' => ['Technology'],
'organization_location' => ['United States'],
'extra' => 'include'
]);
foreach ($fintechStartups['data'] as $company) {
echo $company['name'] . " - " . $company['about_us'] . "\n";
echo "Employees: " . $company['employee_count_range'] . "\n";
echo "Founded: " . $company['founded_year'] . "\n\n";
}
?>
Example Response
{
"data": [
{
"about_us": "Welcome to the official page of Cartão de TODOS on LinkedIn! We are pioneers in the country, with a successful and established business model, serving over 5 million families in all Brazilian states.",
"appstore.app_category": "Finance",
"appstore.last_update": "2024-01-11",
"appstore.top_rating": 4.9,
"appstore.top_review_count": 32935,
"appstore.top_url": "https://apps.apple.com/br/app/id1536693230",
"appstore.update_count": 25,
"city": "Ipatinga",
"country": "Brazil",
"country_code": "BR",
"country_region": "LATAM",
"employee_count_range": "5001 to 10000",
"employee_on_linkedin_growth_rate": 3,
"has_cio": "Unknown",
"has_ciso": "Unknown",
"has_mobile_app": true,
"has_web_app": false,
"headquarters.city": "Ipatinga",
"headquarters.country_name": "Brazil",
"headquarters.state": "Minas Gerais",
"id": "tu_oacdlz2wb",
"industry": "Wellness and Fitness Services",
"industry_details.naics_code": "541611;541512;459999",
"industry_details.naics_description": "Administrative Management and General Management Consulting Services;Computer Systems Design Services;All Other Miscellaneous Retailers",
"is_linkedin_url_claimed": "true",
"is_website_for_sale": false,
"linkedin_url": "https://www.linkedin.com/company/cartao-de-todos",
"location_continent": "South America",
"location_count": 1,
"name": "Cartão De Todos",
"playstore.app_category": "Finance",
"playstore.download_count": 5028400,
"playstore.last_update": "2024-01-09",
"playstore.top_rating": 3,
"playstore.top_review_count": 399303,
"playstore.top_url": "https://play.google.com/store/apps/details?id=com.cartaodetodoswalletapp",
"postcode": "35162-399",
"primary_domain": "cartaodetodos.com.br",
"role_count.business_development": 1,
"role_count.engineer": 1,
"role_count.it": 27,
"role_count.marketing": 45,
"role_count.sales": 3,
"specialties": "clínica médica;serviços;saúde;odontologia;educação a distância;lazer;descontos",
"state": "Minas Gerais",
"street": "37 Rua Dom Pedro Ii",
"technologies.automation": "Hubspot",
"technologies.cloud_provider": "Microsoft Azure",
"technologies.cms": "Hubspot",
"technologies.crm": "Hubspot",
"technologies.email_hosting": "Microsoft",
"total_reviews": 432238,
"website_traffic.monthly_organic": 94,
"website_traffic.total_monthly": 94,
"website_url": "https://cartaodetodos.com.br"
},
{
"about_us": "Seal Distributors Inc is a company specializing in the Fluid Sealing industry and is located at 200 Tech Dr, Sanford, Florida, United States.",
"city": "Sanford",
"country": "United States",
"country_code": "US",
"country_region": "NORAM",
"employee_count_range": "11 to 50",
"founded_year": 1985,
"has_cio": "Unknown",
"has_ciso": "Unknown",
"has_mobile_app": false,
"has_web_app": false,
"headquarters.city": "Sanford",
"headquarters.country_name": "United States",
"headquarters.state": "Florida",
"id": "tu_oab7ugt2z",
"industry": "Wholesale",
"industry_details.naics_code": "423840;339991;325520",
"industry_details.naics_description": "Industrial Supplies Merchant Wholesalers;Gasket; Packing; and Sealing Device Manufacturing;Adhesive Manufacturing",
"is_linkedin_url_claimed": "true",
"is_website_for_sale": false,
"linkedin_url": "https://www.linkedin.com/company/seal-distributors-inc",
"location_continent": "North America",
"location_count": 1,
"name": "Seal Distributors Inc",
"phone": "+1 800-334-1711",
"postcode": "32771-6662",
"primary_domain": "sealdistributors.com",
"revenue_range": "$1M to <$10M",
"role_count.sales": 3,
"state": "Florida",
"street": "200 Tech Dr",
"valid_email_count": "5",
"website_traffic.monthly_organic": 163,
"website_traffic.total_monthly": 163,
"website_url": "https://www.sealdistributors.com"
}
],
"statusCode": 201,
"message": "Success"
}
Search Strategies
Industry-Specific Searches
Industry-Specific Searches
Technology Sector:Healthcare & Life Sciences:
# AI/ML companies
?keywords=artificial intelligence machine learning&industry=Technology&founded_year_min=2018
# SaaS platforms
?industry=SaaS&revenue_range=10M-50M&growth_stage=Scale-up
# Cybersecurity firms
?keywords=cybersecurity security&company_size=51-200&has_funding=true
# Digital health startups
?industry=Healthcare&keywords=digital health&founded_year_min=2019&funding_stage=Series A
# Biotech companies
?industry=Biotechnology&revenue_range=1M-10M&location=Boston
Funding-Based Searches
Funding-Based Searches
Investment Research:
# Recently funded startups
?funding_stage=Series A&founded_year_min=2022&sort_by=funding_amount
# High-growth companies
?has_funding=true&growth_stage=Scale-up&employee_count_min=100
# Pre-IPO companies
?funding_stage=Series D+&company_size=1001-5000&type=Private
Geographic Searches
Geographic Searches
Regional Analysis:
# Silicon Valley tech scene
?location=San Francisco&industry=Technology&company_size=51-200
# European fintech
?industry=Fintech&country=UK,Germany,France&has_funding=true
# Emerging markets
?country=India,Brazil,Singapore&growth_stage=Startup&founded_year_min=2020
Credit Usage
Base per result
Funding/Extra/Web Traffic/Headcount per result
Technology per result
Cost Calculation Example:
- Search returning 20 results with all enrichments enabled
- Base cost: 20 × 1 = 20 credits
- Funding enrichment: 20 × 1 = 20 credits
- Technology enrichment: 20 × 2 = 40 credits
- Extra enrichment: 20 × 1 = 20 credits
- Website traffic enrichment: 20 × 1 = 20 credits
- Headcount growth enrichment: 20 × 1 = 20 credits
- Total: 140 credits
Advanced Filtering Combinations
// Find competitors in specific segments
const ecommerceCompetitors = await searchCompanies({
industry: 'E-commerce',
company_size: '201-500',
technology: 'Shopify',
revenue_range: '10M-50M',
country: 'US'
});
// Identify acquisition targets
const acquisitionTargets = await searchCompanies({
industry: 'SaaS',
company_size: '11-50',
founded_year_min: 2018,
has_funding: true,
growth_stage: 'Growth',
limit: 50
});
// Find companies using specific technology
const reactCompanies = await searchCompanies({
technology: 'React',
industry: 'Technology',
company_size: '51-200',
location: 'California',
sort_by: 'employee_count'
});
def find_investment_opportunities():
# Early stage startups with traction
early_stage = search_companies(
funding_stage='Seed',
founded_year_min=2021,
growth_stage='Startup',
has_funding=True,
industry='Technology',
limit=100
)
# Growth companies ready for Series B
growth_stage = search_companies(
funding_stage='Series A',
company_size='51-200',
growth_stage='Scale-up',
founded_year_max=2020,
sort_by='funding_amount'
)
# Pre-IPO opportunities
pre_ipo = search_companies(
funding_stage='Series D+',
company_size='1001-5000',
revenue_range='100M-500M',
type='Private'
)
return {
'early_stage': early_stage['data'],
'growth_stage': growth_stage['data'],
'pre_ipo': pre_ipo['data']
}
Pagination & Bulk Exports
async function exportMarketSegment(filters, maxResults = 5000) {
let allCompanies = [];
let offset = 0;
const batchSize = 100;
while (allCompanies.length < maxResults) {
const params = new URLSearchParams({
...filters,
limit: Math.min(batchSize, maxResults - allCompanies.length),
offset: offset
});
const response = await fetch(
`https://api.tuesday.so/api/v1/company/search?${params}`,
{ headers: { 'X-API-KEY': 'your-api-key-here' } }
);
const data = await response.json();
if (!data.data || data.data.length === 0) break;
allCompanies.push(...data.data);
if (!data.pagination.has_more) break;
offset += batchSize;
// Rate limiting pause
await new Promise(resolve => setTimeout(resolve, 3000));
}
return allCompanies.slice(0, maxResults);
}
// Export all SaaS companies in California
const californiaSaas = await exportMarketSegment({
industry: 'SaaS',
location: 'California',
company_size: '51-200,201-500',
has_funding: true
}, 2000);
Use Cases
Sales Prospecting
Build targeted lists of companies matching your ideal customer profile
Market Research
Analyze market segments, competitor landscapes, and industry trends
Investment Pipeline
Identify investment opportunities across different funding stages
Competitive Intelligence
Monitor competitor activities and market positioning
Partnership Discovery
Find potential partners, vendors, and strategic alliances
Talent Acquisition
Identify companies for competitive hiring and talent mapping
Error Responses
400 Bad Request - Invalid Parameters
400 Bad Request - Invalid Parameters
{
"statusCode": 400,
"message": "Bad Request",
"error": "Invalid company_size value. Must be one of: 1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001+"
}
400 Bad Request - No Search Criteria
400 Bad Request - No Search Criteria
{
"statusCode": 400,
"message": "Bad Request",
"error": "At least one search filter is required"
}
Filter Reference
Industry Categories
Industry Categories
Popular Industries:
- Technology, Software, SaaS, AI/ML
- Healthcare, Biotechnology, Pharmaceuticals
- Fintech, Banking, Insurance
- E-commerce, Retail, Consumer Goods
- Manufacturing, Automotive, Energy
- Media, Entertainment, Gaming
- Real Estate, Construction
- Education, Non-profit
Company Size Ranges
Company Size Ranges
1-10: Micro companies and very early startups11-50: Small companies and startups51-200: Small to medium companies201-500: Medium companies501-1000: Medium-large companies1001-5000: Large companies5001+: Enterprise and Fortune 500 companies
Funding Stages
Funding Stages
Pre-Seed: Very early funding before SeedSeed: Initial formal funding roundSeries A: First major VC roundSeries B: Growth funding roundSeries C: Later-stage growth fundingSeries D+: Late-stage private fundingIPO: Public companiesAcquired: Companies that have been acquired
Related Endpoints
- Company Profile API - Get detailed information for specific companies
- Company Employee Count - Get employee metrics for companies
- Company Employee Search - Find employees within specific companies
- People Search API - Search for people across companies
⌘I