Skip to main content
POST
/
v2
/
profiles
Get Contact Info
curl --request POST \
  --url https://api.example.com/v2/profiles \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "account_id": "<string>",
  "action": "<string>",
  "params": {
    "profile_url": "<string>"
  }
}
'
{
  "success": true,
  "data": {
    "email": "[email protected]",
    "phone": "+1234567890",
    "twitter": "johndoe",
    "websites": [
      "https://johndoe.dev",
      "https://blog.johndoe.dev"
    ],
    "address": "San Francisco, CA",
    "birthday": null,
    "connected_at": "2023-06-15"
  },
  "metadata": {
    "action": "get_contact",
    "account_id": "your-account-id",
    "credits_consumed": 1,
    "timestamp": "2026-03-24T12:00:00Z"
  }
}

Overview

Fetches the contact details for a specified profile, including email, phone number, Twitter handle, and websites.
This endpoint consumes 1 credit per request.

Request

x-api-key
string
required
Your API key for authentication.
account_id
string
required
The unique identifier of the account to use.
action
string
required
Must be "get_contact".
params
object

Response

success
boolean
Indicates whether the request was successful.
data
object
The contact information of the target user.
metadata
object
{
  "success": true,
  "data": {
    "email": "[email protected]",
    "phone": "+1234567890",
    "twitter": "johndoe",
    "websites": [
      "https://johndoe.dev",
      "https://blog.johndoe.dev"
    ],
    "address": "San Francisco, CA",
    "birthday": null,
    "connected_at": "2023-06-15"
  },
  "metadata": {
    "action": "get_contact",
    "account_id": "your-account-id",
    "credits_consumed": 1,
    "timestamp": "2026-03-24T12:00:00Z"
  }
}