Email Lookup API

This API enables you to retrieve detailed information associated with an email address. This will return complete data on a user's linkedin profile and company's information.

Reverse Email Lookup

This API enables you to retrieve detailed information associated with an email address. This will return complete data on a user's linkedin profile and company's information.

Sample API Request

import requests
 
headers = {
    'Authorization': 'Api-Key YOUR_API_KEY'
}
 
payload = {
    'email':'<username@domain.com>'
}
 
response = requests.get('https://api.tinyapi.co/v1/reverse-email-lookup/person/', headers=headers, params=payload)
 
if response.status_code == 200:
    print(response.json())
else:
    print(f"Error: {response.status_code}")

Sample API Response

{
  "displayName": "Bill Gates",
  "firstName": "Bill",
  "lastName": "Gates",
  "headline": "Co-chair, Bill & Melinda Gates Foundation",
  "occupation": "Co-chair at Bill & Melinda Gates Foundation",
  "summary": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
  "location": "Seattle, Washington, United States of America",
  "photoUrl": "https://kollect-assets.sgp1.digitaloceanspaces.com/enrich-images/2f4393ba-321c-4e38-aa35-9ba1d9071e1e.jpg",
  "linkedInUrl": "https://www.linkedin.com/in/williamhgates/",
  "connectionCount": 9,
  "isConnectionCountObfuscated": false,
  "skills": [],
  "locale": {
    "country": "us",
    "language": "en"
  },
  "schools": {
    "educationsCount": 2,
    "educationHistory": [
      {
        "school": {
          "schoolName": "Harvard University",
          "schoolLocation": null,
          "schoolLogo": "https://media.licdn.com/dms/image/C4E0BAQF5t62bcL0e9g/company-logo_100_100/0/1519855919126?e=2147483647&v=beta&t=xQR2sj62cuK1N9Gc38PeaCYdYYlRO5Bx8ssZpQp3Pds",
          "linkedInUrl": null
        },
        "degreeName": null,
        "startEndDate": {
          "start": {
            "year": 1973
          },
          "end": {
            "year": 1975
          }
        },
        "fieldOfStudy": null,
        "schoolName": "Harvard University",
        "schoolLocation": "Madhya Pradesh, India",
        "schoolLogo": "https://media.licdn.com/dms/image/C4E0BAQF5t62bcL0e9g/company-logo_100_100/0/1519855919126?e=2147483647&v=beta&t=xQR2sj62cuK1N9Gc38PeaCYdYYlRO5Bx8ssZpQp3Pds",
        "linkedInUrl": null
      }
    ]
  },
  "positions": {
    "positionsCount": 3,
    "positionHistory": [
      {
        "title": "Founder",
        "startEndDate": {
          "start": {
            "month": 1,
            "year": 2015
          },
          "end": null
        },
        "company": {
          "companyName": "Breakthrough Energy",
          "companyLocation": null,
          "companyLogo": "https://media.licdn.com/dms/image/C4D0BAQGwD9vNu044FA/company-logo_100_100/0/1601560874941?e=2147483647&v=beta&t=kU-bG3k-Zo4SCW6HwfGmVKW_iyPkuVilSsXtp1kWxcM",
          "linkedInUrl": "https://www.linkedin.com/company/breakthrough-energy"
        },
        "companyName": "Breakthrough Energy",
        "companyLocation": null,
        "companyLogo": "https://kollect-assets.sgp1.digitaloceanspaces.com/enrich-images/2ca8d10b-d35a-49cd-aef3-dbeceafc22ef.jpg",
        "linkedInUrl": "https://www.linkedin.com/company/breakthrough-energy"
      }
    ]
  },
  "skillEndorsements": null,
  "userGeneratedContents": {},
  "people_also_viewed": [],
  "recommendations": [],
  "languages": [],
  "accomplishment_organisations": [],
  "accomplishment_publications": [],
  "accomplishment_honors_awards": [],
  "accomplishment_patents": [],
  "accomplishment_courses": [],
  "accomplishment_projects": [],
  "accomplishment_test_scores": [],
  "volunteer_work": [],
  "certifications": [],
  "groups": [],
  "version": 1
}

Email Finder

Get the email of a person based on the name and company domain you enter.

Sample API Request

import requests
 
headers = {
    'Authorization': 'Api-Key YOUR_API_KEY'
}
 
payload = {'fullName':'<username>', 'companyDomain':'<example.com>' }
 
response = requests.get('https://api.tinyapi.co/v1/reverse-email-lookup/find-email/', headers=headers, params=payload)
 
if response.status_code == 200:
    print(response.json())
else:
    print(f"Error: {response.status_code}")

Sample API Response

{
    "email": "username.lastname@example.com",
    "firstName": "username",
    "lastName": "lastname",
    "domain": "example.com",
    "acceptAll": true,
    "found": true,
    "total_credits": 25000,
    "credits_used": 229,
    "credits_remaining": 24771
}

Integration

Easily integrate Tiny API into your projects

Integrating Tiny API into your projects is a straightforward process. Follow these simple steps, and you'll have the power of Tiny API at your fingertips.

Step 1: Sign Up and Get Your API Key

To get started with Tiny API, you'll first need to sign up for an account on our website. Once you've signed up, you'll receive an API key, which you'll need to include in your API requests for authentication.

Step 2: Choose Your API

Next, you'll need to choose the API you want to integrate into your project. Explore our extensive catalog of APIs, and find the one that best suits your needs. Make sure to familiarize yourself with the API documentation, which includes important information on the available endpoints, request parameters, and response formats.

Step 3: Make API Requests

With your API key and chosen API in hand, you're now ready to start making API requests. You can use any programming language or tool that supports HTTP requests to make calls to the Tiny API endpoints. Remember to include your API key in the request headers for authentication.

Here's a sample API request using Python and the popular requests library:

import requests
 
api_key = "your_api_key"
url = "https://api.tinyapi.co/v1/reverse-email-lookup/details/"
headers = {"Authorization": f"Api-Key {api_key}"}
 
response = requests.get(url, headers=headers)
 
if response.status_code == 200:
data = response.json()
print(data)
else:
print(f"Error: {response.status_code}")