Skip to main content
POST
/
api
/
funda
/
agents
/funda/agents
curl --request POST \
  --url https://api.anysite.io/api/funda/agents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "agent": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@funda_agent",
    "name": "<string>",
    "association": "<string>",
    "page_type": "<string>",
    "slogan": "<string>",
    "description": "<string>",
    "short_description": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "website_url": "<string>",
    "address": {
      "@type": "@funda_agent_address",
      "street": "<string>",
      "house_number": "<string>",
      "postcode": "<string>",
      "city": "<string>"
    },
    "image": "<string>",
    "geo_identifier": "<string>",
    "has_listings": true,
    "rating": 123,
    "review_count": 123,
    "selectivity_percentage": 123,
    "services": [],
    "specialties": [],
    "certificates": [],
    "languages": [],
    "opening_hours": [],
    "facebook_url": "<string>",
    "instagram_url": "<string>",
    "linkedin_url": "<string>",
    "employees": [],
    "reviews": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
agent
string
required

Funda agent (makelaar) id or an agent URL containing it

Minimum string length: 1
Examples:

"24607"

"https://www.funda.nl/makelaar/24607-krk-makelaars-amsterdam/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@funda_agent
name
string | null
association
string | null
page_type
string | null
slogan
string | null
description
string | null
short_description
string | null
email
string | null
phone
string | null
website_url
string | null
address
FundaAgentAddress · object
image
string | null
geo_identifier
string | null
has_listings
boolean | null
rating
number | null
review_count
integer | null
selectivity_percentage
integer | null
services
string[]
specialties
string[]
certificates
string[]
languages
string[]
opening_hours
FundaAgentOpeningHours · object[]
facebook_url
string | null
instagram_url
string | null
linkedin_url
string | null
employees
FundaAgentEmployee · object[]
reviews
FundaAgentReview · object[]