Profile
GET/partner/c/smart-cnam/profile/:src/:dst
Lookup a caller's web presence / profile information
Includes any related phone numbers, emails and social networks found.
Request
Path Parameters
src integerrequired
Possible values: >= 11
The source caller including country code (without +)
dst integer
Possible values: >= 11
The destination caller including country code (without +)
Responses
- 200
- 401
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
data
object
phoneNumber number
profile
object
title string
description string
website
object
url string
domain string
location
object
address string
city string
region string
email string[]
phone string[]
social string[]
{
"data": {
"phoneNumber": 14165551234,
"profile": {
"title": "Example phone number company",
"description": "Additional information related to callers phone number.",
"website": {
"url": "https://www.example.com"
},
"domain": "example.com",
"location": {
"address": "123 Example St.",
"city": "Toronto",
"region": "ON"
},
"email": [
[
"jondoh@example.com",
"janedoh@example.com"
]
],
"phone": [
[
14165551234,
14165554321
]
],
"social": [
[
"linkedin.com/company/example-co",
"facebook.com/example-co/"
]
]
}
}
}
Unauthorized.
Source phone number not found or permitted.
Loading...