GET
/
api
/
v1
/
people
/
lookup
/
phone
Reverse Phone Lookup
curl --request GET \
  --url https://api.tuesday.so/api/v1/people/lookup/phone \
  --header 'X-API-KEY: <x-api-key>'
{
    "data": {
        "city": "Houston",
        "country": "United States",
        "country_code": "US",
        "country_region": "NORAM",
        "first_name": "Matthew",
        "id": "tu_pacdp5w2z",
        "job_start_date": "2017-03-01",
        "last_name": "Lindstrom",
        "linkedin_url": "https://www.linkedin.com/in/mrlindstrom1",
        "name": "Matthew Lindstrom",
        "organization_id": "tu_oacidb4kh",
        "organizations.founded_year": 1997,
        "organizations.linkedin_url": "https://www.linkedin.com/company/waypoint-solutions-llc",
        "organizations.name": "Waypoint Business Solutions",
        "organizations.primary_domain": "waypointsolutions.com",
        "organizations.website_url": "https://www.waypointsolutions.com",
        "seniority": "Staff",
        "state": "Texas",
        "title": "Senior Engineer"
    },
    "statusCode": 200,
    "message": "Success"
}

Overview

Find a person’s professional profile using their phone number. This endpoint is useful for identifying unknown callers, enriching contact databases, and discovering professional information about phone contacts.

Authentication

X-API-KEY
string
required

Your Tuesday API key

Query Parameters

phone
string
required

Phone number to lookup (e.g., +14155552671, +1 713-408-6387)

Format: International format with country code is recommended

Response

data
object
statusCode
number

HTTP status code (200 for success)

message
string

Response message

Example Requests

curl --location 'https://api.tuesday.so/api/v1/people/lookup/phone?phone=%2B1%20713-408-6387' \
--header 'X-API-KEY: your-api-key-here'

Example Response

{
    "data": {
        "city": "Houston",
        "country": "United States",
        "country_code": "US",
        "country_region": "NORAM",
        "first_name": "Matthew",
        "id": "tu_pacdp5w2z",
        "job_start_date": "2017-03-01",
        "last_name": "Lindstrom",
        "linkedin_url": "https://www.linkedin.com/in/mrlindstrom1",
        "name": "Matthew Lindstrom",
        "organization_id": "tu_oacidb4kh",
        "organizations.founded_year": 1997,
        "organizations.linkedin_url": "https://www.linkedin.com/company/waypoint-solutions-llc",
        "organizations.name": "Waypoint Business Solutions",
        "organizations.primary_domain": "waypointsolutions.com",
        "organizations.website_url": "https://www.waypointsolutions.com",
        "seniority": "Staff",
        "state": "Texas",
        "title": "Senior Engineer"
    },
    "statusCode": 200,
    "message": "Success"
}

Phone Number Formats

Credit Usage

Credit per lookup

Phone reverse lookup uses 1 credit per request. Unlike other people endpoints, this doesn’t have additional enrichment options since contact information is already provided.

Error Responses

Best Practices

Use Cases

Caller Identification

Identify unknown business callers and prepare for conversations

Contact Enrichment

Add professional context to phone contacts in your database

Lead Verification

Verify legitimacy of phone-based leads and prospects

CRM Data Quality

Enhance phone contact records with professional information

Regional Considerations