API for finding employee contact information from companies using various criteria.
Revealed Employee Finder API (1.0.0)
Download OpenAPI description
Overview
API Support
License
Languages
Servers
Mock server
https://docs.revealead.com/_mock/apis
Production Server
https://api.revealead.app/employeefinder
- Mock serverhttps://docs.revealead.com/_mock/apis/contacts/company/{company_id}
- Production Serverhttps://api.revealead.app/employeefinder/contacts/company/{company_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.revealead.com/_mock/apis/contacts/company/{company_id}?show_all_anonymized=false&withemail=true&withlinkedin=true&withlegal=true&email_test_status=all&contact_max=50&contact_ids=string' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "success": true, "company": { "id": "593b6fa6b3a2feb79d4f9f39", "registration_number": "GB06441592" }, "contacts": [ { … } ], "contacts_count": 0, "meta": { "has_more": true, "next_cursor": "string" }, "credits_used": 0 }
- Mock serverhttps://docs.revealead.com/_mock/apis/contacts/{contact_id}
- Production Serverhttps://api.revealead.app/employeefinder/contacts/{contact_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.revealead.com/_mock/apis/contacts/{contact_id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "success": true, "contact": { "id": "8301343831281918940", "civility": "Mr", "first_name": "James", "last_name": "THOMPSON", "role": "Chief Technology Officer", "level_code": "DIRECTOR", "level_label": "Director", "domain_code": "TECH", "domain_label": "Technology", "email": "james.thompson@example.com", "email_test_result": "Safe to Send", "linkedin_url": "https://www.linkedin.com/in/james-thompson", "contact_source": "linkedin", "anonymized": false }, "credits_used": 1 }