Get one published project
curl --request GET \
--url https://devapi.prov.ae/v2/public/projects/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/projects/{id}"
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/{id}', 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/{id}",
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/{id}"
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/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/projects/{id}")
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{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "Marina Heights",
"slug": "<string>",
"campaignType": "<string>",
"propertyTypes": [
"<string>"
],
"startingPrice": "<string>",
"deliveryDate": "2023-11-07T05:31:56Z",
"brochure": true,
"paymentPlans": [
"<string>"
],
"developer": {
"name": "<string>"
},
"location": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Dubai Marina",
"fullPath": "Dubai | Dubai Marina",
"parentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parentName": "Dubai",
"level": "<string>"
},
"image": {
"url": "<string>",
"originalFileName": "<string>",
"mimeType": "<string>",
"sortOrder": 123
},
"status": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"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": 400,
"code": "BAD_REQUEST",
"message": "<string>",
"errors": [
"<string>"
],
"details": {},
"path": "/v2/public/leads",
"timestamp": "2023-11-07T05:31:56Z"
}{
"statusCode": 429,
"code": "RATE_LIMITED",
"message": "Too Many Requests",
"path": "/v2/public/leads",
"timestamp": "2026-07-27T06:31:04.512Z"
}Reference data
Get one published project
GET
/
public
/
projects
/
{id}
Get one published project
curl --request GET \
--url https://devapi.prov.ae/v2/public/projects/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/projects/{id}"
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/{id}', 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/{id}",
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/{id}"
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/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/projects/{id}")
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{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "Marina Heights",
"slug": "<string>",
"campaignType": "<string>",
"propertyTypes": [
"<string>"
],
"startingPrice": "<string>",
"deliveryDate": "2023-11-07T05:31:56Z",
"brochure": true,
"paymentPlans": [
"<string>"
],
"developer": {
"name": "<string>"
},
"location": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Dubai Marina",
"fullPath": "Dubai | Dubai Marina",
"parentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parentName": "Dubai",
"level": "<string>"
},
"image": {
"url": "<string>",
"originalFileName": "<string>",
"mimeType": "<string>",
"sortOrder": 123
},
"status": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"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": 400,
"code": "BAD_REQUEST",
"message": "<string>",
"errors": [
"<string>"
],
"details": {},
"path": "/v2/public/leads",
"timestamp": "2023-11-07T05:31:56Z"
}{
"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.
Path Parameters
Project UUID.
Query Parameters
true (default) returns the compact shape; false returns the full record.
Response
Project
Compact project shape (the default). Additional fields may be present; only these are contractual.
Example:
"Marina Heights"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes