Contacts
List contacts
Returns contacts owned by the API key’s user. Results never accept an owner id — they are always scoped to the key. Soft-merged duplicates and the owner’s self row are excluded.
GET
/
api
/
v1
/
contacts
List contacts
curl --request GET \
--url https://orbitmy.co/api/v1/contacts \
--header 'Authorization: Bearer <token>'import requests
url = "https://orbitmy.co/api/v1/contacts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://orbitmy.co/api/v1/contacts', 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://orbitmy.co/api/v1/contacts",
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://orbitmy.co/api/v1/contacts"
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://orbitmy.co/api/v1/contacts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://orbitmy.co/api/v1/contacts")
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": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Ada Lovelace",
"email": "ada@analytical.example",
"phone": null,
"company": "Analytical Engines",
"title": "Chief Visionary",
"school": "University of London",
"linkedin_url": "https://www.linkedin.com/in/ada",
"location": "London, UK",
"description": "Mathematician and writer",
"tags": [
"founder",
"advisor"
],
"enrichment": {},
"enriched_at": "2026-07-01T12:00:00.000Z",
"source": "linkedin",
"birthday": null,
"created_at": "2026-06-01T12:00:00.000Z",
"updated_at": "2026-07-01T12:00:00.000Z"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 1,
"nextOffset": null
}
}{
"error": "Invalid or inactive API key"
}{
"error": "API key lacks contacts:read"
}{
"error": "<string>"
}Authorizations
Personal Orbit API key from Settings → API
Query Parameters
Page size (1–100). Defaults to 50.
Required range:
1 <= x <= 100Number of contacts to skip for pagination.
Required range:
x >= 0⌘I
List contacts
curl --request GET \
--url https://orbitmy.co/api/v1/contacts \
--header 'Authorization: Bearer <token>'import requests
url = "https://orbitmy.co/api/v1/contacts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://orbitmy.co/api/v1/contacts', 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://orbitmy.co/api/v1/contacts",
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://orbitmy.co/api/v1/contacts"
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://orbitmy.co/api/v1/contacts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://orbitmy.co/api/v1/contacts")
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": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Ada Lovelace",
"email": "ada@analytical.example",
"phone": null,
"company": "Analytical Engines",
"title": "Chief Visionary",
"school": "University of London",
"linkedin_url": "https://www.linkedin.com/in/ada",
"location": "London, UK",
"description": "Mathematician and writer",
"tags": [
"founder",
"advisor"
],
"enrichment": {},
"enriched_at": "2026-07-01T12:00:00.000Z",
"source": "linkedin",
"birthday": null,
"created_at": "2026-06-01T12:00:00.000Z",
"updated_at": "2026-07-01T12:00:00.000Z"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 1,
"nextOffset": null
}
}{
"error": "Invalid or inactive API key"
}{
"error": "API key lacks contacts:read"
}{
"error": "<string>"
}