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.

Retrieve authenticated user data including credits and saved records.
ToolDescriptionRiskSchema
get_creditsCurrent credit balance and usage.read#get_credits
get_my_contactsSaved/researched contacts within a date range (max 30 days).read#get_my_contacts
get_my_companiesSaved/researched companies within a date range (max 30 days).read#get_my_companies

get_credits

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_credits",
    "arguments": {}
  },
  "id": 1
}

get_my_contacts

startDate
string
ISO 8601 start (e.g. 2026-05-01T00:00:00Z). Max range 30 days.
endDate
string
ISO 8601 end (e.g. 2026-05-18T23:59:59Z).

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_my_contacts",
    "arguments": {
      "startDate": "2026-05-01T00:00:00Z",
      "endDate": "2026-05-18T23:59:59Z"
    }
  },
  "id": 1
}

get_my_companies

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_my_companies",
    "arguments": {
      "startDate": "2026-05-01T00:00:00Z",
      "endDate": "2026-05-18T23:59:59Z"
    }
  },
  "id": 1
}