Skip to main content

Documentation Index

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

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

Search the Seamless.AI database for contacts and companies. Does not consume credits.
ToolDescriptionRiskSchema
search_contactsSearch contacts by company, job title, seniority, location, industry, and more. Returns a paginated table.read#search_contacts
search_companiesSearch companies by name, domain, industry, size, revenue, and more. Returns a paginated table.read#search_companies

search_contacts

companyName
string[]
Filter by company names.
jobTitle
string[]
Filter by job title (not title).
fullname
string[]
Filter by contact full name (not contactName).
limit
integer
default:"50"
Results per page.

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "search_contacts",
    "arguments": {
      "companyName": ["Acme Corp"],
      "jobTitle": ["VP Sales"],
      "seniority": ["VP", "Director"],
      "limit": 10
    }
  },
  "id": 1
}

search_companies

companyName
string[]
Filter by company names.

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "search_companies",
    "arguments": {
      "companyName": ["Acme Corp"],
      "limit": 10
    }
  },
  "id": 1
}