Skip to main content
POST
/
api
/
zoopla
/
agents
/zoopla/agents
curl --request POST \
  --url https://api.anysite.io/api/zoopla/agents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "branch": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@zoopla_agent",
    "name": "<string>",
    "image": "<string>",
    "address": "<string>",
    "postcode": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "url": "<string>",
    "description": "<string>",
    "memberships": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
branch
string
required

Zoopla agent branch id or a branch URL containing it

Minimum string length: 1
Examples:

"22864"

"https://www.zoopla.co.uk/find-agents/branch/london-estates-london-22864/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@zoopla_agent
name
string | null
image
string | null
address
string | null
postcode
string | null
phone
string | null
email
string | null
url
string | null
description
string | null
memberships
ZooplaAgentMembership · object[]