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.

Enrich contacts and companies with verified data. Consumes credits. Research is async — use poll tools or set waitForResults: true on research calls.
ToolDescriptionRiskSchema
research_contactsEnrich contacts for verified email and phone. Pass searchResultIds or contacts. Set waitForResults: true to auto-poll.write#research_contacts
poll_contact_researchPoll contact research with requestIds from research_contacts.read#poll_contact_research
research_companiesEnrich companies for revenue, size, technologies, etc.write#research_companies
poll_company_researchPoll company research with requestIds from research_companies.read#poll_company_research

research_contacts

searchResultIds
string[]
IDs from search_contacts.
waitForResults
boolean
When true, blocks until results are ready.

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "research_contacts",
    "arguments": {
      "searchResultIds": ["abc123"],
      "waitForResults": true
    }
  },
  "id": 1
}

poll_contact_research

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "poll_contact_research",
    "arguments": {
      "requestIds": ["req-456"]
    }
  },
  "id": 1
}

research_companies

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "research_companies",
    "arguments": {
      "searchResultIds": ["co-789"]
    }
  },
  "id": 1
}

poll_company_research

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "poll_company_research",
    "arguments": {
      "requestIds": ["req-101"]
    }
  },
  "id": 1
}