Go back
Lima Data

Lima Data

v1 · 52 endpoints

Lima Data (52)

API Explorer

— credits
ColdIQ
APIs→Lima Data
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/limadata/enrich/person17.5 cr

Enrich a person's professional profile using email, LinkedIn URL, or name+company. Variable credit cost (1-5) settled fr…

Authentication

No API key — create one in the dashboard

Body

Person's email address. Example: [email protected]

Person's LinkedIn URL. Example: https://www.linkedin.com/in/michel-lieben

Person's name. Required when using company lookup. Example: Michel Lieben

Company name. Use with name for identity resolution. Example: ColdIQ

Company domain. Use with name for identity resolution. Example: coldiq.com

Include work email in response. Adds 1 credit if found.

Include phone number(s) in response. Adds 10 credits if found.

import requests

url = "https://api.coldiq.com/v1/limadata/enrich/person"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())