curl --request GET \
--url https://jaarrekening.be/api/v1/enterprises \
--header 'Authorization: Bearer <token>'import requests
url = "https://jaarrekening.be/api/v1/enterprises"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaarrekening.be/api/v1/enterprises', 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://jaarrekening.be/api/v1/enterprises",
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://jaarrekening.be/api/v1/enterprises"
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://jaarrekening.be/api/v1/enterprises")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://jaarrekening.be/api/v1/enterprises")
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": [
{
"slug": "société-mosane-d-electronique",
"name": "Société Mosane d'Electronique",
"number": "0404.441.993",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Saint-Georges-sur-Meuse",
"municipality_fr": "Saint-Georges-sur-Meuse",
"zipcode": "4470",
"street_nl": "Rue Joseph Wauters",
"street_fr": "Rue Joseph Wauters",
"house_number": "8",
"contact": []
},
{
"slug": "Société-d-Applications-Frigorifiques-et-Electroniques",
"name": "Société d'Applications Frigorifiques et Electroniques",
"number": "0404.619.266",
"start_date": "1949-12-30T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Lange Schipperskapelstraat",
"street_fr": "Lange Schipperskapelstraat",
"house_number": "1-3",
"contact": []
},
{
"slug": "electro-style",
"name": "Electro-Style",
"number": "0404.636.884",
"start_date": "1961-09-19T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2060",
"street_nl": "Sint-Gummarusstraat",
"street_fr": "Sint-Gummarusstraat",
"house_number": "40",
"contact": []
},
{
"slug": "european-electric-service-ltd",
"name": "European Electric Service Ltd",
"number": "0404.638.765",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Meir",
"street_fr": "Meir",
"house_number": "42",
"contact": []
},
{
"slug": "Govaerts-Electriciteitsbenodigdheden",
"name": "Govaerts - Electriciteitsbenodigdheden",
"number": "0404.642.923",
"start_date": "1925-01-20T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Hessenplein",
"street_fr": "Hessenplein",
"house_number": "2",
"contact": []
},
{
"slug": "Marine-Electronic-Service",
"name": "Marine Electronic Service",
"number": "0404.651.930",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2018",
"street_nl": "De Keyserlei",
"street_fr": "De Keyserlei",
"house_number": "53",
"contact": []
},
{
"slug": "electro-industrielle",
"name": "Electro Industrielle",
"number": "0404.656.977",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2060",
"street_nl": "Sint-Jansplein",
"street_fr": "Sint-Jansplein",
"house_number": "17",
"contact": []
},
{
"slug": "service-auto-radio-electrique",
"name": "Service Auto-Radio-ELectrique",
"number": "0404.661.234",
"start_date": "1954-03-21T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2018",
"street_nl": "Sint-Vincentiusstraat",
"street_fr": "Sint-Vincentiusstraat",
"house_number": "35",
"contact": []
},
{
"slug": "stereo-electronics",
"name": "Stereo Electronics",
"number": "0404.665.192",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2018",
"street_nl": "Lange Leemstraat",
"street_fr": "Lange Leemstraat",
"house_number": "54",
"contact": []
},
{
"slug": "electronical-management-office",
"name": "Electronical Management Office",
"number": "0404.885.819",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Koningstraat",
"street_fr": "Koningstraat",
"house_number": "10",
"contact": []
},
{
"slug": "electro-willemen",
"name": "Electro Willemen",
"number": "0404.924.520",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2140",
"street_nl": "Te Boelaarlei",
"street_fr": "Te Boelaarlei",
"house_number": "27",
"contact": []
},
{
"slug": "electriciteitszaak-de-wit",
"name": "Electriciteitszaak De Wit",
"number": "0405.022.609",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Schildersstraat",
"street_fr": "Schildersstraat",
"house_number": "53",
"contact": []
},
{
"slug": "Auto-Electro-Diesel-Equipment",
"name": "Auto Electro Diesel Equipment",
"number": "0405.089.420",
"start_date": "1965-04-06T00:00:00.000000Z",
"municipality_nl": "Brugge",
"municipality_fr": "Brugge",
"zipcode": "8000",
"street_nl": "Sint-Clarastraat",
"street_fr": "Sint-Clarastraat",
"house_number": "121",
"contact": []
},
{
"slug": "electa",
"name": "Electa",
"number": "0405.110.602",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Sint-Niklaas",
"municipality_fr": "Sint-Niklaas",
"zipcode": "9100",
"street_nl": "Europark-Noord",
"street_fr": "Europark-Noord",
"house_number": "39",
"contact": []
},
{
"slug": "electricité-générale-d-ostende",
"name": "Electricité Générale d'Ostende",
"number": "0405.255.904",
"start_date": "1953-04-30T00:00:00.000000Z",
"municipality_nl": "Oostende",
"municipality_fr": "Oostende",
"zipcode": "8400",
"street_nl": "Groentemarkt",
"street_fr": "Groentemarkt",
"house_number": "4",
"contact": []
}
],
"links": {
"first": "http://localhost:8000/api/v1/enterprises?page=1",
"last": null,
"prev": null,
"next": "http://localhost:8000/api/v1/enterprises?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"path": "http://localhost:8000/api/v1/enterprises",
"per_page": 15,
"to": 15
}
}List enterprises
List enterprises, optionally narrowed by an exact name or number match.
The search parameter here matches exactly: a multi-word value must appear in the company name as a contiguous, correctly spelled substring, and a numeric value is matched as a prefix of the enterprise number. It does not tolerate typos or reordered words. For free text a user typed, use GET /search instead.
curl --request GET \
--url https://jaarrekening.be/api/v1/enterprises \
--header 'Authorization: Bearer <token>'import requests
url = "https://jaarrekening.be/api/v1/enterprises"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaarrekening.be/api/v1/enterprises', 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://jaarrekening.be/api/v1/enterprises",
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://jaarrekening.be/api/v1/enterprises"
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://jaarrekening.be/api/v1/enterprises")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://jaarrekening.be/api/v1/enterprises")
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": [
{
"slug": "société-mosane-d-electronique",
"name": "Société Mosane d'Electronique",
"number": "0404.441.993",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Saint-Georges-sur-Meuse",
"municipality_fr": "Saint-Georges-sur-Meuse",
"zipcode": "4470",
"street_nl": "Rue Joseph Wauters",
"street_fr": "Rue Joseph Wauters",
"house_number": "8",
"contact": []
},
{
"slug": "Société-d-Applications-Frigorifiques-et-Electroniques",
"name": "Société d'Applications Frigorifiques et Electroniques",
"number": "0404.619.266",
"start_date": "1949-12-30T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Lange Schipperskapelstraat",
"street_fr": "Lange Schipperskapelstraat",
"house_number": "1-3",
"contact": []
},
{
"slug": "electro-style",
"name": "Electro-Style",
"number": "0404.636.884",
"start_date": "1961-09-19T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2060",
"street_nl": "Sint-Gummarusstraat",
"street_fr": "Sint-Gummarusstraat",
"house_number": "40",
"contact": []
},
{
"slug": "european-electric-service-ltd",
"name": "European Electric Service Ltd",
"number": "0404.638.765",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Meir",
"street_fr": "Meir",
"house_number": "42",
"contact": []
},
{
"slug": "Govaerts-Electriciteitsbenodigdheden",
"name": "Govaerts - Electriciteitsbenodigdheden",
"number": "0404.642.923",
"start_date": "1925-01-20T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Hessenplein",
"street_fr": "Hessenplein",
"house_number": "2",
"contact": []
},
{
"slug": "Marine-Electronic-Service",
"name": "Marine Electronic Service",
"number": "0404.651.930",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2018",
"street_nl": "De Keyserlei",
"street_fr": "De Keyserlei",
"house_number": "53",
"contact": []
},
{
"slug": "electro-industrielle",
"name": "Electro Industrielle",
"number": "0404.656.977",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2060",
"street_nl": "Sint-Jansplein",
"street_fr": "Sint-Jansplein",
"house_number": "17",
"contact": []
},
{
"slug": "service-auto-radio-electrique",
"name": "Service Auto-Radio-ELectrique",
"number": "0404.661.234",
"start_date": "1954-03-21T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2018",
"street_nl": "Sint-Vincentiusstraat",
"street_fr": "Sint-Vincentiusstraat",
"house_number": "35",
"contact": []
},
{
"slug": "stereo-electronics",
"name": "Stereo Electronics",
"number": "0404.665.192",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2018",
"street_nl": "Lange Leemstraat",
"street_fr": "Lange Leemstraat",
"house_number": "54",
"contact": []
},
{
"slug": "electronical-management-office",
"name": "Electronical Management Office",
"number": "0404.885.819",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Koningstraat",
"street_fr": "Koningstraat",
"house_number": "10",
"contact": []
},
{
"slug": "electro-willemen",
"name": "Electro Willemen",
"number": "0404.924.520",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2140",
"street_nl": "Te Boelaarlei",
"street_fr": "Te Boelaarlei",
"house_number": "27",
"contact": []
},
{
"slug": "electriciteitszaak-de-wit",
"name": "Electriciteitszaak De Wit",
"number": "0405.022.609",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Antwerpen",
"municipality_fr": "Antwerpen",
"zipcode": "2000",
"street_nl": "Schildersstraat",
"street_fr": "Schildersstraat",
"house_number": "53",
"contact": []
},
{
"slug": "Auto-Electro-Diesel-Equipment",
"name": "Auto Electro Diesel Equipment",
"number": "0405.089.420",
"start_date": "1965-04-06T00:00:00.000000Z",
"municipality_nl": "Brugge",
"municipality_fr": "Brugge",
"zipcode": "8000",
"street_nl": "Sint-Clarastraat",
"street_fr": "Sint-Clarastraat",
"house_number": "121",
"contact": []
},
{
"slug": "electa",
"name": "Electa",
"number": "0405.110.602",
"start_date": "1968-01-01T00:00:00.000000Z",
"municipality_nl": "Sint-Niklaas",
"municipality_fr": "Sint-Niklaas",
"zipcode": "9100",
"street_nl": "Europark-Noord",
"street_fr": "Europark-Noord",
"house_number": "39",
"contact": []
},
{
"slug": "electricité-générale-d-ostende",
"name": "Electricité Générale d'Ostende",
"number": "0405.255.904",
"start_date": "1953-04-30T00:00:00.000000Z",
"municipality_nl": "Oostende",
"municipality_fr": "Oostende",
"zipcode": "8400",
"street_nl": "Groentemarkt",
"street_fr": "Groentemarkt",
"house_number": "4",
"contact": []
}
],
"links": {
"first": "http://localhost:8000/api/v1/enterprises?page=1",
"last": null,
"prev": null,
"next": "http://localhost:8000/api/v1/enterprises?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"path": "http://localhost:8000/api/v1/enterprises",
"per_page": 15,
"to": 15
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Exact name or number to match. See the description above for how matching works.
Comma separated ISO country codes to narrow results to, for example BE,FR. This only ever narrows: it cannot grant access to data your token does not already cover.
Response
List of enterprises
The response is of type object.
Was this page helpful?
