Skip to main content
POST
/
api
/
pagesjaunes
/
people
/
search
/pagesjaunes/people/search
curl --request POST \
  --url https://api.anysite.io/api/pagesjaunes/people/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "quoiqui": "<string>",
  "count": 2,
  "timeout": 300,
  "ou": "<string>",
  "sort": "relevance"
}
'
[
  {
    "name": "<string>",
    "@type": "PagesJaunesPerson",
    "address": "<string>",
    "postal_code": "<string>",
    "city": "<string>",
    "phone": "<string>",
    "phones": [],
    "is_business": false,
    "activity": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
quoiqui
string
required

A person's name, or a phone number for reverse lookup

Minimum string length: 1
Examples:

"Martin"

"0140474000"

count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
ou
string | null

Where: city or address (optional, ignored for reverse phone lookup)

sort
enum<string>
default:relevance

Result ordering

Available options:
relevance,
az,
za

Response

Successful Response

name
string
required
@type
string
default:PagesJaunesPerson
address
string | null
postal_code
string | null
city
string | null
phone
string | null
phones
string[]
is_business
boolean
default:false
activity
string | null
url
string | null