Locations, developers, property types and statuses
curl --request GET \
--url https://devapi.prov.ae/v2/public/projects/filters \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/projects/filters"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://devapi.prov.ae/v2/public/projects/filters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://devapi.prov.ae/v2/public/projects/filters",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://devapi.prov.ae/v2/public/projects/filters"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://devapi.prov.ae/v2/public/projects/filters")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/projects/filters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"filters": {
"developer": {
"displayName": "Developer",
"values": [
{
"id": "11111111-1111-1111-1111-111111111111",
"name": "Emaar"
}
]
},
"location": {
"displayName": "Location",
"values": [
{
"id": "22222222-2222-2222-2222-222222222222",
"name": "Dubai Marina",
"fullName": "Dubai"
}
]
},
"propertyType": {
"displayName": "Property Type",
"values": [
{
"id": "33333333-3333-3333-3333-333333333333",
"name": "Apartment"
}
]
},
"status": {
"displayName": "Status",
"values": [
{
"id": "44444444-4444-4444-4444-444444444444",
"name": "Off-plan",
"color": "#00aaaa"
}
]
}
}
}{
"statusCode": 401,
"code": "OAUTH_TOKEN_EXPIRED",
"message": "OAuth access token expired",
"path": "/v2/public/projects/filters",
"timestamp": "2026-07-27T06:31:04.512Z"
}{
"statusCode": 429,
"code": "RATE_LIMITED",
"message": "Too Many Requests",
"path": "/v2/public/leads",
"timestamp": "2026-07-27T06:31:04.512Z"
}Reference data
Locations, developers, property types and statuses
Returns every lookup list in one call. There is no standalone locations endpoint — this is where locations come from.
Use filters.location.values[].name as the lead’s areaOfInterest and filters.propertyType.values[].name as propertyTypeInterest so those values resolve instead of landing in intakeUnresolved. The UUIDs are the ones accepted by the project list filters.
These lists change rarely — cache them (a daily refresh is plenty) rather than calling per lead, since reference reads share the lead endpoint’s rate limit.
GET
/
public
/
projects
/
filters
Locations, developers, property types and statuses
curl --request GET \
--url https://devapi.prov.ae/v2/public/projects/filters \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/projects/filters"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://devapi.prov.ae/v2/public/projects/filters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://devapi.prov.ae/v2/public/projects/filters",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://devapi.prov.ae/v2/public/projects/filters"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://devapi.prov.ae/v2/public/projects/filters")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/projects/filters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"filters": {
"developer": {
"displayName": "Developer",
"values": [
{
"id": "11111111-1111-1111-1111-111111111111",
"name": "Emaar"
}
]
},
"location": {
"displayName": "Location",
"values": [
{
"id": "22222222-2222-2222-2222-222222222222",
"name": "Dubai Marina",
"fullName": "Dubai"
}
]
},
"propertyType": {
"displayName": "Property Type",
"values": [
{
"id": "33333333-3333-3333-3333-333333333333",
"name": "Apartment"
}
]
},
"status": {
"displayName": "Status",
"values": [
{
"id": "44444444-4444-4444-4444-444444444444",
"name": "Off-plan",
"color": "#00aaaa"
}
]
}
}
}{
"statusCode": 401,
"code": "OAUTH_TOKEN_EXPIRED",
"message": "OAuth access token expired",
"path": "/v2/public/projects/filters",
"timestamp": "2026-07-27T06:31:04.512Z"
}{
"statusCode": 429,
"code": "RATE_LIMITED",
"message": "Too Many Requests",
"path": "/v2/public/leads",
"timestamp": "2026-07-27T06:31:04.512Z"
}