curl --request GET \
--url https://devapi.prov.ae/v2/public/projects \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/projects"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/projects")
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{
"data": [
{
"id": "55555555-5555-5555-5555-555555555555",
"title": "Marina Heights",
"slug": "marina-heights",
"campaignType": "Launch",
"propertyTypes": [
"Apartment",
"Penthouse"
],
"startingPrice": "1200000",
"deliveryDate": "2027-06-30T00:00:00.000Z",
"brochure": true,
"paymentPlans": [
"60/40"
],
"developer": {
"name": "Emaar"
},
"location": {
"id": "22222222-2222-2222-2222-222222222222",
"name": "Dubai Marina",
"fullPath": "Dubai | Dubai Marina",
"parentName": "Dubai"
},
"image": {
"url": "https://media.prov.ae/public/projects/images/marina-heights.jpg",
"sortOrder": 0
},
"status": {
"id": "44444444-4444-4444-4444-444444444444",
"name": "Off-plan"
}
}
],
"meta": {
"page": 1,
"limit": 20,
"total": 84,
"totalPages": 5
}
}{
"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"
}List published projects
Paginated, filterable list of published projects. Returns the compact shape by default; pass simplified=false for the full record.
The UUIDs accepted by developerIds, locationIds, statusIds and propertyTypes all come from GET /public/projects/filters.
curl --request GET \
--url https://devapi.prov.ae/v2/public/projects \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/projects"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/projects")
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{
"data": [
{
"id": "55555555-5555-5555-5555-555555555555",
"title": "Marina Heights",
"slug": "marina-heights",
"campaignType": "Launch",
"propertyTypes": [
"Apartment",
"Penthouse"
],
"startingPrice": "1200000",
"deliveryDate": "2027-06-30T00:00:00.000Z",
"brochure": true,
"paymentPlans": [
"60/40"
],
"developer": {
"name": "Emaar"
},
"location": {
"id": "22222222-2222-2222-2222-222222222222",
"name": "Dubai Marina",
"fullPath": "Dubai | Dubai Marina",
"parentName": "Dubai"
},
"image": {
"url": "https://media.prov.ae/public/projects/images/marina-heights.jpg",
"sortOrder": 0
},
"status": {
"id": "44444444-4444-4444-4444-444444444444",
"name": "Off-plan"
}
}
],
"meta": {
"page": 1,
"limit": 20,
"total": 84,
"totalPages": 5
}
}{
"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"
}Authorizations
The access_token returned by POST /oauth2/token, sent as Authorization: Bearer <access_token>. It is an opaque string, not a JWT.
Query Parameters
Free-text search.
Comma-separated developer UUIDs. Alias: developerId.
Comma-separated location UUIDs. Alias: locationId.
Comma-separated status UUIDs. Alias: statusId.
Comma-separated property-type UUIDs. Alias: propertyType.
Handover date lower bound.
Handover date upper bound.
Value from the filters call.
Value from the filters call.
Value from the filters call.
true (default) returns the compact project shape; false returns the full record.
1-indexed page number. Projects only — the developers and locations endpoints reject it with 422.
x >= 1Page size.
x >= 1asc, desc