curl --request GET \
--url https://devapi.prov.ae/v2/public/developers/search \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/developers/search"
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/developers/search', 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/developers/search",
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/developers/search"
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/developers/search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/developers/search")
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": "11111111-1111-1111-1111-111111111111",
"name": "Emaar",
"slug": "emaar",
"logoUrl": "https://media.prov.ae/public/developers/emaar-logo.png",
"imageUrl": "https://media.prov.ae/public/developers/emaar-cover.jpg",
"description": "Master developer.",
"enabled": true,
"popular": true,
"contactId": null,
"createdAt": "2026-07-21T10:09:32.393Z",
"updatedAt": "2026-07-21T10:09:32.393Z"
}
],
"meta": {
"limit": 50,
"offset": 0,
"total": 244
}
}{
"statusCode": 401,
"code": "OAUTH_TOKEN_EXPIRED",
"message": "OAuth access token expired",
"path": "/v2/public/projects/filters",
"timestamp": "2026-07-27T06:31:04.512Z"
}{
"statusCode": 422,
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"errors": [
"property page should not exist"
],
"path": "/v2/public/developers?page=1&limit=2",
"timestamp": "2026-08-19T07:20:28.507Z"
}{
"statusCode": 429,
"code": "RATE_LIMITED",
"message": "Too Many Requests",
"path": "/v2/public/leads",
"timestamp": "2026-07-27T06:31:04.512Z"
}Search developers
Matches the term against developer name, slug and description, ranking exact-name matches first. Falls back to the plain list when no term is given. CHANGED 2026-08: this endpoint moved from page/limit to limit/offset, and meta from {page, limit, total, totalPages} to {limit, offset, total}. page is no longer accepted — sending it returns 422, it is not ignored. Relevance-ranked against the search term (name, slug, description and id); falls back to the plain list when no term is given.
curl --request GET \
--url https://devapi.prov.ae/v2/public/developers/search \
--header 'Authorization: Bearer <token>'import requests
url = "https://devapi.prov.ae/v2/public/developers/search"
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/developers/search', 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/developers/search",
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/developers/search"
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/developers/search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devapi.prov.ae/v2/public/developers/search")
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": "11111111-1111-1111-1111-111111111111",
"name": "Emaar",
"slug": "emaar",
"logoUrl": "https://media.prov.ae/public/developers/emaar-logo.png",
"imageUrl": "https://media.prov.ae/public/developers/emaar-cover.jpg",
"description": "Master developer.",
"enabled": true,
"popular": true,
"contactId": null,
"createdAt": "2026-07-21T10:09:32.393Z",
"updatedAt": "2026-07-21T10:09:32.393Z"
}
],
"meta": {
"limit": 50,
"offset": 0,
"total": 244
}
}{
"statusCode": 401,
"code": "OAUTH_TOKEN_EXPIRED",
"message": "OAuth access token expired",
"path": "/v2/public/projects/filters",
"timestamp": "2026-07-27T06:31:04.512Z"
}{
"statusCode": 422,
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"errors": [
"property page should not exist"
],
"path": "/v2/public/developers?page=1&limit=2",
"timestamp": "2026-08-19T07:20:28.507Z"
}{
"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
Page size, default 50, clamped to 200. meta.limit echoes the value actually applied, not what was asked for.
1 <= x <= 200Records to skip.
x >= 0Search term. Aliases q and query are accepted for the same value.
Alias for search.
Alias for search.
CSV of sort keys, most significant first; each may carry its own direction (name:desc, -name). Unknown keys are ignored.
"popular:desc,name:asc"
Default direction for sort keys that do not carry one.
asc, desc Omit for all enabled developers; true / false filters by the popular flag.
true, false