Leads
List all leads
GET
/
v1
/
api
/
leads
List all leads
curl --request GET \
--url https://api.flixerpro.io/v1/api/leads \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.flixerpro.io/v1/api/leads"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.flixerpro.io/v1/api/leads', 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://api.flixerpro.io/v1/api/leads",
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-API-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://api.flixerpro.io/v1/api/leads"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-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://api.flixerpro.io/v1/api/leads")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flixerpro.io/v1/api/leads")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"createdAt": "2026-06-17T10:30:45.000Z",
"updatedAt": "2026-06-17T10:30:45.000Z",
"createdBy": null,
"updatedBy": null,
"deletedAt": null,
"archivedAt": null,
"id": "WKIabc123def456ghi789jkl",
"brandId": "BRDabc123def456ghi789jkl",
"customerId": "CUSabc123def456ghi789jkl",
"title": "Lekkage badkamer",
"description": "Klant meldt waterschade aan het plafond",
"status": "request",
"priority": "medium",
"category": "Loodgieter",
"customerSignature": null,
"scheduledStart": null,
"scheduledEnd": null,
"actualStart": null,
"actualEnd": null,
"source": "web",
"receivedAt": "2026-06-17T10:30:45.000Z",
"addressId": "ADRabc123def456ghi789jkl",
"customStatusId": null,
"estimatedCost": null,
"finalCost": null,
"budgetQuote": "€500 - €1000",
"notes": null,
"completionNotes": null,
"tags": null,
"customer": {
"createdAt": "2026-06-17T10:30:45.000Z",
"updatedAt": "2026-06-17T10:30:45.000Z",
"createdBy": null,
"updatedBy": null,
"deletedAt": null,
"archivedAt": null,
"id": "CUSabc123def456ghi789jkl",
"brandId": "BRDabc123def456ghi789jkl",
"name": "Jan de Vries",
"firstName": "Jan",
"lastName": "de Vries",
"email": "[email protected]",
"phone": "+31612345678",
"secondaryPhone": null,
"companyName": "Installatiebedrijf De Vries B.V.",
"isCompany": false,
"status": "active",
"addressId": "ADRabc123def456ghi789jkl",
"notes": null,
"tags": null
},
"address": {
"id": "ADRabc123def456ghi789jkl",
"brandId": "BRDabc123def456ghi789jkl",
"country": "Nederland",
"stateProvince": null,
"city": "Amsterdam",
"postalCode": "1015 CJ",
"street": "Keizersgracht",
"streetNumber": "123",
"streetNumberAddition": "A",
"latitude": 52.3676,
"longitude": 4.9041,
"locationNotes": null
}
}
],
"limit": 50
}{
"statusCode": 400,
"message": "customerName is required",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "customerName is required",
"error": "Bad Request"
}⌘I
List all leads
curl --request GET \
--url https://api.flixerpro.io/v1/api/leads \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.flixerpro.io/v1/api/leads"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.flixerpro.io/v1/api/leads', 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://api.flixerpro.io/v1/api/leads",
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-API-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://api.flixerpro.io/v1/api/leads"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-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://api.flixerpro.io/v1/api/leads")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flixerpro.io/v1/api/leads")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"createdAt": "2026-06-17T10:30:45.000Z",
"updatedAt": "2026-06-17T10:30:45.000Z",
"createdBy": null,
"updatedBy": null,
"deletedAt": null,
"archivedAt": null,
"id": "WKIabc123def456ghi789jkl",
"brandId": "BRDabc123def456ghi789jkl",
"customerId": "CUSabc123def456ghi789jkl",
"title": "Lekkage badkamer",
"description": "Klant meldt waterschade aan het plafond",
"status": "request",
"priority": "medium",
"category": "Loodgieter",
"customerSignature": null,
"scheduledStart": null,
"scheduledEnd": null,
"actualStart": null,
"actualEnd": null,
"source": "web",
"receivedAt": "2026-06-17T10:30:45.000Z",
"addressId": "ADRabc123def456ghi789jkl",
"customStatusId": null,
"estimatedCost": null,
"finalCost": null,
"budgetQuote": "€500 - €1000",
"notes": null,
"completionNotes": null,
"tags": null,
"customer": {
"createdAt": "2026-06-17T10:30:45.000Z",
"updatedAt": "2026-06-17T10:30:45.000Z",
"createdBy": null,
"updatedBy": null,
"deletedAt": null,
"archivedAt": null,
"id": "CUSabc123def456ghi789jkl",
"brandId": "BRDabc123def456ghi789jkl",
"name": "Jan de Vries",
"firstName": "Jan",
"lastName": "de Vries",
"email": "[email protected]",
"phone": "+31612345678",
"secondaryPhone": null,
"companyName": "Installatiebedrijf De Vries B.V.",
"isCompany": false,
"status": "active",
"addressId": "ADRabc123def456ghi789jkl",
"notes": null,
"tags": null
},
"address": {
"id": "ADRabc123def456ghi789jkl",
"brandId": "BRDabc123def456ghi789jkl",
"country": "Nederland",
"stateProvince": null,
"city": "Amsterdam",
"postalCode": "1015 CJ",
"street": "Keizersgracht",
"streetNumber": "123",
"streetNumberAddition": "A",
"latitude": 52.3676,
"longitude": 4.9041,
"locationNotes": null
}
}
],
"limit": 50
}{
"statusCode": 400,
"message": "customerName is required",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "customerName is required",
"error": "Bad Request"
}