Example CURL

curl -X POST -H 'Content-Type: application/json' \\
 -H 'Authorization: Bearer <Auth Token>' \\
 '<https://api.brdg.app/api/v4/export/contacts_by_emails>' \\
 -d '{"emails": ["[email protected]", "[email protected]"]}'

Request: (Host: https://api.brdg.app)

POST /api/v4/export/contacts_by_emails
Content-Type: application/json
Accept: application/json
Authorization: Bearer <Auth Token>

Request body in JSON format:

{"emails":["[email protected]","[email protected]"]}

Response example:

[
  {
    "id": "4c56c6cd-bd34-4d5a-a9a8-de08251d4af6",
    "name": "c1 name",
    "email": "[email protected]",
    "updated_at": "2022-03-14T15:34:37.402Z",
    "linkedin_profile_url": null,
    "profile_pic_url": null,
    "introductions_count": 0,
    "enrichment_enabled": true,
    "given_name": "c1",
    "bio": null,
    "bio_source": null,
    "bio_source_type": null,
    "bio_updated_at": null,
    "twitter": null,
    "share_link": "<http://brdg.app/introductions/new-by-share?token=eyJhbGciOiJIUzI1NiJ9.eyJzaGFyZV90eXBlIjoiY29udGFjdCIsImNvbnRhY3RfaWQiOiI0YzU2YzZjZC1iZDM0LTRkNWEtYTlhOC1kZTA4MjUxZDRhZjYifQ.HzKtcvAu8SJ_BvF1igGCuGDyJHGa4HXW5QWyjmPeOPw>",
    "company": null,
    "position": null,
    "twitter_handle_url": null,
    "company_website": "example.com",
    "location": null,
    "note": null,
    "organisation_link": "example.com",
    "is_personal_email": false,
    "is_global_profile": null,
    "is_member": false
  }
]