Seamless.AI · Example Payload

Seamless Ai Search Contacts Example

B2BContact DataSales IntelligenceProspectingLead GenerationCRM Enrichment

Seamless Ai Search Contacts Example is an example object payload from Seamless.AI, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.seamless.ai/v1/contacts/search",
    "headers": {
      "Authorization": "Bearer {api_key}",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Jane Smith",
      "company": "Acme Corporation",
      "title": "VP of Engineering",
      "location": "San Francisco, CA",
      "page": 1,
      "per_page": 25
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "searchResultId": "sr_abc123xyz",
          "name": "Jane Smith",
          "company": "Acme Corporation",
          "title": "VP of Engineering",
          "location": "San Francisco, CA"
        }
      ],
      "meta": {
        "page": 1,
        "per_page": 25,
        "total": 1,
        "total_pages": 1
      },
      "supplementalData": {
        "nextToken": null
      }
    }
  }
}