Skip to main content
GET
/
v1
/
sender
/
me
Get Account
curl --request GET \
  --url https://b2b.usetapp.xyz/v1/sender/me \
  --header 'API-Key: <api-key>'
{
  "status": "success",
  "message": "Sender profile retrieved",
  "data": {
    "id": "e7c194a0-3c4c-48c4-8235-4ba7dc94fa40",
    "email": "you@example.com",
    "first_name": "Jane",
    "last_name": "Doe",
    "webhook_url": "https://your-app.com/hooks/rails",
    "domain_whitelist": ["https://your-app.com"],
    "is_active": true
  }
}
Returns the authenticated sender’s profile. Useful to confirm your API key, active status, and current webhook configuration.

Header Parameters

API-Key
string
required
Unique API key issued manually through Telegram.

Response

status
string
Response state (success).
data
object
id
string
Sender profile id.
email
string
Account email.
first_name
string
First name.
last_name
string
Last name.
webhook_url
string
Configured webhook URL.
domain_whitelist
array
Allowed domains.
is_active
boolean
Whether the account can create orders.
{
  "status": "success",
  "message": "Sender profile retrieved",
  "data": {
    "id": "e7c194a0-3c4c-48c4-8235-4ba7dc94fa40",
    "email": "you@example.com",
    "first_name": "Jane",
    "last_name": "Doe",
    "webhook_url": "https://your-app.com/hooks/rails",
    "domain_whitelist": ["https://your-app.com"],
    "is_active": true
  }
}