Skip to main content
POST
/
api
/
propertyguru
/
agents
/propertyguru/agents
curl --request POST \
  --url https://api.anysite.io/api/propertyguru/agents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "agent": "<string>",
  "timeout": 300,
  "region": "sg"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@property_guru_agent",
    "name": "<string>",
    "first_name": "<string>",
    "license": "<string>",
    "job_title": "<string>",
    "account_type": "<string>",
    "package_type": "<string>",
    "is_verified": true,
    "agency": "<string>",
    "agency_license": "<string>",
    "agency_logo": "<string>",
    "image": "<string>",
    "description": "<string>",
    "years_of_service": 123,
    "transaction_count": 123,
    "rating": 123,
    "review_count": 123,
    "languages": [],
    "seller_client_count": 123,
    "buyer_client_count": 123,
    "landlord_client_count": 123,
    "tenant_client_count": 123,
    "transaction_types": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
agent
string
required

PropertyGuru agent id, slug-id or agent page URL

Minimum string length: 1
Examples:

"226308"

"thomas-sim-226308"

"https://www.propertyguru.com.sg/agent/thomas-sim-226308"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
region
enum<string>
default:sg

PropertyGuru regional marketplace (sg = Singapore, my = Malaysia).

Available options:
sg,
my

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@property_guru_agent
name
string | null
first_name
string | null
license
string | null
job_title
string | null
account_type
string | null
package_type
string | null
is_verified
boolean | null
agency
string | null
agency_license
string | null
agency_logo
string | null
image
string | null
description
string | null
years_of_service
integer | null
transaction_count
integer | null
rating
number | null
review_count
integer | null
languages
string[]
seller_client_count
integer | null
buyer_client_count
integer | null
landlord_client_count
integer | null
tenant_client_count
integer | null
transaction_types
PropertyGuruAgentTransactionType · object[]