{ "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 } } } }