Skip to main content
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

The API accepts various phone number formats:Recommended (International):
  • +1 713-408-6387
  • +14155552671
  • +44 20 7946 0958
Also Accepted:
  • (713) 408-6387
  • 713-408-6387
  • 7134086387
For optimal results:
  • Include country code when possible (e.g., +1 for US)
  • Use international format for non-US numbers
  • URL encode special characters in API requests
  • Ensure numbers are complete and valid

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

{
    "statusCode": 400,
    "message": "Bad Request",
    "error": "Missing required parameter: phone"
}
{
    "statusCode": 400,
    "message": "Bad Request",
    "error": "Invalid phone number format"
}
{
    "statusCode": 404,
    "message": "Not Found",
    "error": "No profile found for the provided phone number"
}

Best Practices

  • Business/mobile numbers typically have higher match rates
  • Landline numbers may have lower success rates
  • Recent numbers are more likely to return current information
  • Professional contact numbers yield better results than personal lines
  • Only lookup phone numbers you have legitimate business reasons to research
  • Respect privacy laws and regulations in your jurisdiction
  • Consider opt-in/opt-out mechanisms for contact enrichment
  • Use results responsibly for business purposes
  • Verify phone numbers are properly formatted before lookup
  • Handle cases where numbers may have changed or been reassigned
  • Cross-reference results with other data points when possible

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

  • 10-digit numbers: (555) 123-4567 or +1-555-123-4567
  • Business numbers typically have higher match rates
  • Mobile numbers increasingly used for professional contact
  • Always include country code: +44 20 7946 0958
  • Format varies by country - use standard international format
  • Business directories may be less comprehensive in some regions
  • Mobile numbers often have better match rates for professionals
  • Business landlines may connect to multiple employees
  • Consider the number type when interpreting results
I