Submit a buyer lead
curl --request POST \
--url https://v2.easystreetoffers.com/api/v2/buyer/lead \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "My lead",
"last_name": "Test",
"primary_email": "lead@yourdomain.com",
"primary_phone": "+1111111",
"property_address": {
"offer_request_id": 56641,
"inventory_property_id": 116775
}
}
'import requests
url = "https://v2.easystreetoffers.com/api/v2/buyer/lead"
payload = {
"first_name": "My lead",
"last_name": "Test",
"primary_email": "lead@yourdomain.com",
"primary_phone": "+1111111",
"property_address": {
"offer_request_id": 56641,
"inventory_property_id": 116775
}
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
first_name: 'My lead',
last_name: 'Test',
primary_email: 'lead@yourdomain.com',
primary_phone: '+1111111',
property_address: {offer_request_id: 56641, inventory_property_id: 116775}
})
};
fetch('https://v2.easystreetoffers.com/api/v2/buyer/lead', 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://v2.easystreetoffers.com/api/v2/buyer/lead",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'first_name' => 'My lead',
'last_name' => 'Test',
'primary_email' => 'lead@yourdomain.com',
'primary_phone' => '+1111111',
'property_address' => [
'offer_request_id' => 56641,
'inventory_property_id' => 116775
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://v2.easystreetoffers.com/api/v2/buyer/lead"
payload := strings.NewReader("{\n \"first_name\": \"My lead\",\n \"last_name\": \"Test\",\n \"primary_email\": \"lead@yourdomain.com\",\n \"primary_phone\": \"+1111111\",\n \"property_address\": {\n \"offer_request_id\": 56641,\n \"inventory_property_id\": 116775\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://v2.easystreetoffers.com/api/v2/buyer/lead")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"first_name\": \"My lead\",\n \"last_name\": \"Test\",\n \"primary_email\": \"lead@yourdomain.com\",\n \"primary_phone\": \"+1111111\",\n \"property_address\": {\n \"offer_request_id\": 56641,\n \"inventory_property_id\": 116775\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://v2.easystreetoffers.com/api/v2/buyer/lead")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"first_name\": \"My lead\",\n \"last_name\": \"Test\",\n \"primary_email\": \"lead@yourdomain.com\",\n \"primary_phone\": \"+1111111\",\n \"property_address\": {\n \"offer_request_id\": 56641,\n \"inventory_property_id\": 116775\n }\n}"
response = http.request(request)
puts response.read_body{
"created_at": "2025-08-12T17:12:20.542288+00:00",
"lead_id": "6e22e8e3-0533-xxxx-xxxx-xxxxxxxxxx",
"first_name": "My lead",
"last_name": "Test",
"primary_email": "lead@yourdomain.com",
"primary_phone": "+1111111",
"api_partner_user_id": "e83d3b1f-ed37-xxxx-xxxx-xxxxxxxxxxx",
"inventory_property_id": 116775,
"offer_request_id": 56641
}{
"error": 123,
"message": "<string>"
}Buyer Leads
Submit Buyer Lead
Submit a new buyer lead for ESO partner..
POST
/
buyer
/
lead
Submit a buyer lead
curl --request POST \
--url https://v2.easystreetoffers.com/api/v2/buyer/lead \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "My lead",
"last_name": "Test",
"primary_email": "lead@yourdomain.com",
"primary_phone": "+1111111",
"property_address": {
"offer_request_id": 56641,
"inventory_property_id": 116775
}
}
'import requests
url = "https://v2.easystreetoffers.com/api/v2/buyer/lead"
payload = {
"first_name": "My lead",
"last_name": "Test",
"primary_email": "lead@yourdomain.com",
"primary_phone": "+1111111",
"property_address": {
"offer_request_id": 56641,
"inventory_property_id": 116775
}
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
first_name: 'My lead',
last_name: 'Test',
primary_email: 'lead@yourdomain.com',
primary_phone: '+1111111',
property_address: {offer_request_id: 56641, inventory_property_id: 116775}
})
};
fetch('https://v2.easystreetoffers.com/api/v2/buyer/lead', 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://v2.easystreetoffers.com/api/v2/buyer/lead",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'first_name' => 'My lead',
'last_name' => 'Test',
'primary_email' => 'lead@yourdomain.com',
'primary_phone' => '+1111111',
'property_address' => [
'offer_request_id' => 56641,
'inventory_property_id' => 116775
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://v2.easystreetoffers.com/api/v2/buyer/lead"
payload := strings.NewReader("{\n \"first_name\": \"My lead\",\n \"last_name\": \"Test\",\n \"primary_email\": \"lead@yourdomain.com\",\n \"primary_phone\": \"+1111111\",\n \"property_address\": {\n \"offer_request_id\": 56641,\n \"inventory_property_id\": 116775\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://v2.easystreetoffers.com/api/v2/buyer/lead")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"first_name\": \"My lead\",\n \"last_name\": \"Test\",\n \"primary_email\": \"lead@yourdomain.com\",\n \"primary_phone\": \"+1111111\",\n \"property_address\": {\n \"offer_request_id\": 56641,\n \"inventory_property_id\": 116775\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://v2.easystreetoffers.com/api/v2/buyer/lead")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"first_name\": \"My lead\",\n \"last_name\": \"Test\",\n \"primary_email\": \"lead@yourdomain.com\",\n \"primary_phone\": \"+1111111\",\n \"property_address\": {\n \"offer_request_id\": 56641,\n \"inventory_property_id\": 116775\n }\n}"
response = http.request(request)
puts response.read_body{
"created_at": "2025-08-12T17:12:20.542288+00:00",
"lead_id": "6e22e8e3-0533-xxxx-xxxx-xxxxxxxxxx",
"first_name": "My lead",
"last_name": "Test",
"primary_email": "lead@yourdomain.com",
"primary_phone": "+1111111",
"api_partner_user_id": "e83d3b1f-ed37-xxxx-xxxx-xxxxxxxxxxx",
"inventory_property_id": 116775,
"offer_request_id": 56641
}{
"error": 123,
"message": "<string>"
}Authorizations
Body
application/json