Get Agent Detail
curl --request GET \
--url https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail', 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://us-red-property-data.p.rapidapi.com/api/v1/agent/detail",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$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://us-red-property-data.p.rapidapi.com/api/v1/agent/detail"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"cost": 1,
"data": {
"fulfillment_id": "1062618",
"id": "56cb393789a68901006f185f",
"is_paid": true,
"is_realtor": true,
"designations": [],
"display_ratings": true,
"avatar": {
"url": "https://ap.rdcpix.com/346029794/cd5b963073b94e559c920f5722ac8338a-e0rd-w144_h144.jpg",
"initials": "GK"
},
"bio": "As an LA native, my extensive knowledge of this beautiful city,...",
"fullname": "Giovany Kirakossian",
"website": "https://www.thelaagent.com",
"intent_type": [
"BUYER",
"SELLER"
],
"broker": {
"name": "JohnHart Real Estate",
"website": null,
"fulfillment_id": "1612284"
},
"languages": [],
"specializations": [
{
"name": "Buyer's agent"
}
],
"experience": {
"first_year": "2009",
"first_month": "",
"label": "17 years of experience"
},
"ratings_reviews": {
"average_rating": 5,
"recommendations_count": 2,
"reviews_count": 24
},
"served_areas": [
{
"name": "Burbank",
"state_code": "CA"
}
],
"listing_stats": {
"combined_annual": {
"min": 110000,
"max": 2595995
},
"for_sale": {
"count": 5,
"last_listing_date": "2026-01-31T00:27:33Z",
"max": 1600000,
"min": 389999
},
"recently_sold_annual": {
"count": 9
},
"recently_sold_listing_details": {
"listings": [
{
"baths": 5,
"beds": 4,
"city": "Porter Ranch",
"photo": "https://ap.rdcpix.com/f51e872cd9ee444b3a04dd9dc92ba277l-m49364866rd-w100_h67.jpg",
"state_code": "CA"
}
],
"show_additional": true
}
},
"mls": [
{
"mls_set": "A-MRCA-F207056674",
"agent_id": "F207056674",
"id": "MRCA",
"primary": true,
"license_number": "",
"inactivation_date": null,
"status": "A"
}
],
"office": {
"name": "JohnHart Real Estate",
"phones": [
{
"type": "office",
"value": "(818) 246-1099"
}
],
"website": null,
"address": {
"address_formatted_line_1": "19524 Nordhoff St. Ste. 4",
"address_formatted_line_2": "Northridge, CA 91324",
"city": "Northridge",
"postal_code": "91324",
"state_code": "CA"
}
},
"phones": [
{
"type": "mobile",
"value": "(818) 605-4089"
}
],
"license_number": null,
"license_state": null,
"is_empty_profile": false,
"social_media": {
"facebook": {
"href": "https://www.facebook.com/app_scoped_user_id/YXNpZADpBWEZA3MHVpV1dGYUtSckJxSV9iV1hNTWYxdHlueWpWOHRub1BNeVo1VGhBbkRxUVdCeHc3RFBzZAFVuNmpiT0NpQ200V2tsSjRDcV9MRHMxLW5RN1hWc0dmZAVBrUVFyQy1ZAV0t4Tm5ZAdWNR/"
},
"instagram": null,
"linkedin": null,
"tiktok": null,
"x": null,
"youtube": null
},
"about_video": null,
"services": null,
"questions_and_answers": null
}
}{
"message": "Bad request"
}{
"message": "Invalid API key. Go to https://docs.rapidapi.com/docs/keys for more info."
}{
"message": "You are not subscribed to this API."
}{
"success": false,
"message": "Request failed with status 500: Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Oops, it looks like there was an issue processing your request. Don't worry, you won't be charged for this request"
}Agent
Get Agent Detail
Get Agent Detail
GET
/
api
/
v1
/
agent
/
detail
Get Agent Detail
curl --request GET \
--url https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail', 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://us-red-property-data.p.rapidapi.com/api/v1/agent/detail",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$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://us-red-property-data.p.rapidapi.com/api/v1/agent/detail"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://us-red-property-data.p.rapidapi.com/api/v1/agent/detail")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"cost": 1,
"data": {
"fulfillment_id": "1062618",
"id": "56cb393789a68901006f185f",
"is_paid": true,
"is_realtor": true,
"designations": [],
"display_ratings": true,
"avatar": {
"url": "https://ap.rdcpix.com/346029794/cd5b963073b94e559c920f5722ac8338a-e0rd-w144_h144.jpg",
"initials": "GK"
},
"bio": "As an LA native, my extensive knowledge of this beautiful city,...",
"fullname": "Giovany Kirakossian",
"website": "https://www.thelaagent.com",
"intent_type": [
"BUYER",
"SELLER"
],
"broker": {
"name": "JohnHart Real Estate",
"website": null,
"fulfillment_id": "1612284"
},
"languages": [],
"specializations": [
{
"name": "Buyer's agent"
}
],
"experience": {
"first_year": "2009",
"first_month": "",
"label": "17 years of experience"
},
"ratings_reviews": {
"average_rating": 5,
"recommendations_count": 2,
"reviews_count": 24
},
"served_areas": [
{
"name": "Burbank",
"state_code": "CA"
}
],
"listing_stats": {
"combined_annual": {
"min": 110000,
"max": 2595995
},
"for_sale": {
"count": 5,
"last_listing_date": "2026-01-31T00:27:33Z",
"max": 1600000,
"min": 389999
},
"recently_sold_annual": {
"count": 9
},
"recently_sold_listing_details": {
"listings": [
{
"baths": 5,
"beds": 4,
"city": "Porter Ranch",
"photo": "https://ap.rdcpix.com/f51e872cd9ee444b3a04dd9dc92ba277l-m49364866rd-w100_h67.jpg",
"state_code": "CA"
}
],
"show_additional": true
}
},
"mls": [
{
"mls_set": "A-MRCA-F207056674",
"agent_id": "F207056674",
"id": "MRCA",
"primary": true,
"license_number": "",
"inactivation_date": null,
"status": "A"
}
],
"office": {
"name": "JohnHart Real Estate",
"phones": [
{
"type": "office",
"value": "(818) 246-1099"
}
],
"website": null,
"address": {
"address_formatted_line_1": "19524 Nordhoff St. Ste. 4",
"address_formatted_line_2": "Northridge, CA 91324",
"city": "Northridge",
"postal_code": "91324",
"state_code": "CA"
}
},
"phones": [
{
"type": "mobile",
"value": "(818) 605-4089"
}
],
"license_number": null,
"license_state": null,
"is_empty_profile": false,
"social_media": {
"facebook": {
"href": "https://www.facebook.com/app_scoped_user_id/YXNpZADpBWEZA3MHVpV1dGYUtSckJxSV9iV1hNTWYxdHlueWpWOHRub1BNeVo1VGhBbkRxUVdCeHc3RFBzZAFVuNmpiT0NpQ200V2tsSjRDcV9MRHMxLW5RN1hWc0dmZAVBrUVFyQy1ZAV0t4Tm5ZAdWNR/"
},
"instagram": null,
"linkedin": null,
"tiktok": null,
"x": null,
"youtube": null
},
"about_video": null,
"services": null,
"questions_and_answers": null
}
}{
"message": "Bad request"
}{
"message": "Invalid API key. Go to https://docs.rapidapi.com/docs/keys for more info."
}{
"message": "You are not subscribed to this API."
}{
"success": false,
"message": "Request failed with status 500: Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Oops, it looks like there was an issue processing your request. Don't worry, you won't be charged for this request"
}Authorizations
Rapid API Key
Query Parameters
Agent ID used to identify the agent
Minimum string length:
1Example:
"56cb393789a68901006f185f"
⌘I