Tamtam Public API (1.1.0)

Download OpenAPI specification:

This is the public API for Tamtam. It allows searching for lookalike companies.

Changelog V2 (2025-02-19)

  • improved lookalike quality for large companies
  • we now accept company domains or name and do a matching when there is no linkedin_id or slug provided
  • the v2 api favors snake_case to camelCase and there is only one way to do authorization (through the Authorization header)

Search for lookalike companies (v2)

Authorizations:
apikeyAuth
Request Body schema: application/json
Array of objects (InputCompany)

List of companies to find lookalikes for

queries
Array of strings

Full text queries about activities

hq_countries
Array of strings

2 letter country codes e.g. ["FR", "DE"]

industries
Array of strings

Linkedin Industry filters e.g. ["Software Development"], full list here "https://www.linkedin.com/pulse/full-linkedin-industry-list-2024-upamanyu-roy-krihf/"

sizes
Array of strings

Company size filters e.g. ["11-50", "51-200"]

founded_min
integer

Companies founded after year N

founded_max
integer

Companies founded before year N

employees_on_linkedin_min
integer

Min number of employees on LinkedIn

employees_on_linkedin_max
integer

Max number of employees on LinkedIn

object (PagingFilterV2)

Responses

Request samples

Content type
application/json
{
  • "input_companies": [
    ],
  • "queries": [
    ],
  • "hq_countries": [
    ],
  • "industries": [
    ],
  • "sizes": [
    ],
  • "founded_min": 0,
  • "founded_max": 0,
  • "employees_on_linkedin_min": 0,
  • "employees_on_linkedin_max": 0,
  • "paging": {
    }
}

Response samples

Content type
application/json
{
  • "matched_inputs": [
    ],
  • "lookalikes": [
    ],
  • "paging": {
    },
  • "credits": {
    }
}