API Credentials |

Lookup Fields API Playground

Send a targeted lookup request and check the result using the returned request ID.

Try the API

Request Parameters

Required when email, phone, and profile URL are empty
Each requested field costs 1 credit.
Add keys such as linkedin. Start with a letter. Maximum 10. Each requested key costs 1 credit.

Quick Examples

Response

Loading request builder...

Check Request Status

Use this to check a queued lookup request.

Example Requests

{ "email": "[email protected]", "fields": ["current_company", "current_title"] }
{ "name": "Jane Example", "company": "Example Company", "city": "San Francisco", "state": "CA", "fields": ["current_company", "current_title"], "probability_score": true }
{ "social_media_url": "https://profile.example/person", "fields": ["displayname", "headline", "photo_url"], "profile_urls": ["linkedin"] }

Response Format

{ "success": true, "data": { "request_id": "abc123...", "status": "completed", "completed": true, "result": { "best_work_email": "[email protected]", "fullphone": [ { "fullphone": "(555) 123-4567", "phone_type": "mobile", "type": "mobile" } ], "organizations": [ { "name": "Example Company", "title": "VP Technology", "endDate": "Present", "endDate_formatted": { "is_current": true } } ], "social_profiles": { "linkedin": { "url": "https://www.linkedin.com/in/person" } } }, "error": null } }

Not Found

{ "success": true, "data": { "request_id": "abc123...", "status": "not_found", "completed": true, "result": null, "error": null } }