Lister les entreprises identifiées
curl --request GET \
--url https://api.spottracker.fr/v1/companies \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.spottracker.fr/v1/companies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.spottracker.fr/v1/companies', 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.spottracker.fr/v1/companies",
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://api.spottracker.fr/v1/companies"
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://api.spottracker.fr/v1/companies")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.spottracker.fr/v1/companies")
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{
"total": 137,
"limit": 50,
"offset": 0,
"data": [
{
"id": "clx3k9v2p0000qw8h1a2b3cde",
"name": "Atelier Vermeil",
"domain": "atelier-vermeil.fr",
"industry": "Industrie",
"size": "50-200",
"country": "France",
"city": "Lyon",
"revenue": "10-50 M€",
"intentScore": 78,
"intentLevel": "hot",
"icpScore": 64,
"commercialScore": 71,
"crmStatus": "new",
"visitsCount": 12,
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"contacts": [
{
"id": "clx3k9v2p0001qw8h4m2n7abc",
"name": "Camille Perrin",
"jobTitle": "Directrice des opérations",
"seniority": "c_level",
"email": "<string>",
"phone": "<string>",
"linkedin": "<string>"
}
],
"siren": "<string>"
}
]
}{
"statusCode": 400,
"message": [
"limit must not be greater than 200"
],
"error": "BAD_REQUEST",
"path": "/v1/companies?limit=999",
"timestamp": "2026-08-25T14:32:07.412Z"
}{
"statusCode": 401,
"message": "Clé d’API invalide.",
"error": "UNAUTHORIZED",
"path": "/v1/me",
"timestamp": "2026-08-25T14:32:07.412Z"
}{
"statusCode": 429,
"message": "Limite de 120 requêtes par minute atteinte.",
"error": "TOO_MANY_REQUESTS",
"path": "/v1/companies",
"timestamp": "2026-08-25T14:32:07.412Z"
}Référence API
Lister les entreprises identifiées
Triées par score d’intention décroissant. since filtre sur la date de dernière visite (lastSeen).
GET
/
v1
/
companies
Lister les entreprises identifiées
curl --request GET \
--url https://api.spottracker.fr/v1/companies \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.spottracker.fr/v1/companies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.spottracker.fr/v1/companies', 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.spottracker.fr/v1/companies",
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://api.spottracker.fr/v1/companies"
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://api.spottracker.fr/v1/companies")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.spottracker.fr/v1/companies")
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{
"total": 137,
"limit": 50,
"offset": 0,
"data": [
{
"id": "clx3k9v2p0000qw8h1a2b3cde",
"name": "Atelier Vermeil",
"domain": "atelier-vermeil.fr",
"industry": "Industrie",
"size": "50-200",
"country": "France",
"city": "Lyon",
"revenue": "10-50 M€",
"intentScore": 78,
"intentLevel": "hot",
"icpScore": 64,
"commercialScore": 71,
"crmStatus": "new",
"visitsCount": 12,
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"contacts": [
{
"id": "clx3k9v2p0001qw8h4m2n7abc",
"name": "Camille Perrin",
"jobTitle": "Directrice des opérations",
"seniority": "c_level",
"email": "<string>",
"phone": "<string>",
"linkedin": "<string>"
}
],
"siren": "<string>"
}
]
}{
"statusCode": 400,
"message": [
"limit must not be greater than 200"
],
"error": "BAD_REQUEST",
"path": "/v1/companies?limit=999",
"timestamp": "2026-08-25T14:32:07.412Z"
}{
"statusCode": 401,
"message": "Clé d’API invalide.",
"error": "UNAUTHORIZED",
"path": "/v1/me",
"timestamp": "2026-08-25T14:32:07.412Z"
}{
"statusCode": 429,
"message": "Limite de 120 requêtes par minute atteinte.",
"error": "TOO_MANY_REQUESTS",
"path": "/v1/companies",
"timestamp": "2026-08-25T14:32:07.412Z"
}L’API n’est pas encore ouverte.
api.spottracker.fr n’est pas déployé à
ce jour : le bouton Try it de cette page ne peut joindre aucun serveur et
répondra An error occurred while making the request: no response received.Les exemples de requête et de réponse ci-dessous sont générés depuis le code
du back et décrivent fidèlement ce que l’API renverra — ils restent la
référence en attendant l’ouverture.Première fois ? Commencez par l'authentification
Chaque appel porte votre clé dans l’en-tête
Authorization, schéma Bearer.Authorizations
Clé d'API du workspace, préfixée st_. Elle se crée depuis Administration → Tracking et n’est affichée qu’une seule fois.
Query Parameters
Required range:
1 <= x <= 200Required range:
x >= 0Example:
"2026-08-01T00:00:00Z"
⌘I