Self Service Developer API
peoplefinderspro · Company
Self Service Developer API documentation and demo. ##Getting Started You will need an API access profile user and password in order to access search endpoints. Your access profile user and password is used for authenticating all requests to our search API. You MUST pass the user and password each time you perform a search request.
Authentication
Sample Requests
###### *Click on the grey search box above, to view sample request/response objects for Address Autocomplete Search* Perform a search: 1. Add your key and key secret to the request headers. + galaxy-ap-name: [Key] + galaxy-ap-password: [Secret] + galaxy-search-type: DevAPIAddressAutoCo
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/address/autocomplete"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/address/autocomplete",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/address/autocomplete';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/address/autocomplete"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/address/autocomplete")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/address/autocomplete";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));###### *Click on the grey search box above, to view sample request/response objects for Contact Enrichment Search* Perform a search: 1. Add your key and key secret to the request headers. + galaxy-ap-name: [Key] + galaxy-ap-password: [Secret] + galaxy-search-type: DevAPIContactEnrich
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/contact/enrich"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/contact/enrich",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/contact/enrich';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/contact/enrich"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/contact/enrich")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/contact/enrich";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));###### *Click on the grey search box above, to view sample request/response objects for Email Enrichment Search* Perform a search: 1. Add your Access Profile username and password to the request headers. + galaxy-ap-name: [Key] + galaxy-ap-password: [Secret] + galaxy-search-type: DevAP
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/email/enrich"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/email/enrich",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/email/enrich';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/email/enrich"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/email/enrich")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/peoplefinderspro.com/1.0.0/email/enrich";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Self Service Developer API?
Self Service Developer API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Self Service Developer API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?