Create business lookup
curl --request POST \
--url https://api.beltic.com/v1/businesses \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"data": {
"type": "business",
"meta": {
"search_parameters": {
"country": "US",
"input": {
"official_name": "<string>",
"registration_number": "<string>",
"address": "<string>"
},
"async": false
}
},
"relationships": {
"session": {
"data": {
"type": "session",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}
}
}
}
'import requests
url = "https://api.beltic.com/v1/businesses"
payload = { "data": {
"type": "business",
"meta": { "search_parameters": {
"country": "US",
"input": {
"official_name": "<string>",
"registration_number": "<string>",
"address": "<string>"
},
"async": False
} },
"relationships": { "session": { "data": {
"type": "session",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
} } }
} }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'business',
meta: {
search_parameters: {
country: 'US',
input: {
official_name: '<string>',
registration_number: '<string>',
address: '<string>'
},
async: false
}
},
relationships: {session: {data: {type: 'session', id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'}}}
}
})
};
fetch('https://api.beltic.com/v1/businesses', 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.beltic.com/v1/businesses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'business',
'meta' => [
'search_parameters' => [
'country' => 'US',
'input' => [
'official_name' => '<string>',
'registration_number' => '<string>',
'address' => '<string>'
],
'async' => false
]
],
'relationships' => [
'session' => [
'data' => [
'type' => 'session',
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.beltic.com/v1/businesses"
payload := strings.NewReader("{\n \"data\": {\n \"type\": \"business\",\n \"meta\": {\n \"search_parameters\": {\n \"country\": \"US\",\n \"input\": {\n \"official_name\": \"<string>\",\n \"registration_number\": \"<string>\",\n \"address\": \"<string>\"\n },\n \"async\": false\n }\n },\n \"relationships\": {\n \"session\": {\n \"data\": {\n \"type\": \"session\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n }\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.beltic.com/v1/businesses")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"business\",\n \"meta\": {\n \"search_parameters\": {\n \"country\": \"US\",\n \"input\": {\n \"official_name\": \"<string>\",\n \"registration_number\": \"<string>\",\n \"address\": \"<string>\"\n },\n \"async\": false\n }\n },\n \"relationships\": {\n \"session\": {\n \"data\": {\n \"type\": \"session\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n }\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beltic.com/v1/businesses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"business\",\n \"meta\": {\n \"search_parameters\": {\n \"country\": \"US\",\n \"input\": {\n \"official_name\": \"<string>\",\n \"registration_number\": \"<string>\",\n \"address\": \"<string>\"\n },\n \"async\": false\n }\n },\n \"relationships\": {\n \"session\": {\n \"data\": {\n \"type\": \"session\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n }\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"type": "business",
"attributes": {
"is_registered": true,
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>",
"registration_date": "<string>",
"dissolution_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"registered_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"physical_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"identifiers": [
{
"type": "<string>",
"value": "<string>"
}
],
"industry": [
{
"code": "<string>",
"description": "<string>",
"system": "<string>",
"is_primary": true,
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"capital": {
"registered": {
"amount": 123,
"currency": "<string>"
},
"paid_up": {
"amount": 123,
"currency": "<string>"
}
},
"officers": [
{
"name": "<string>",
"type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"address_detail": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"states": [
"<string>"
],
"sources": [
"<string>"
]
}
],
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123,
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"contacts": [
{
"type": "<string>",
"value": "<string>",
"description": "<string>",
"start_date": "<string>",
"end_date": "<string>"
}
],
"name_history": [
{
"name": "<string>",
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"activity_history": [
{
"activity": "<string>",
"date": "<string>"
}
],
"latest_annual_return": {
"year_of_filing": "<string>",
"annual_meeting_date": "<string>"
}
},
"relationships": {
"sessions": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
}
}
}{
"id": "<string>",
"type": "business",
"attributes": {
"is_registered": true,
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>",
"registration_date": "<string>",
"dissolution_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"registered_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"physical_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"identifiers": [
{
"type": "<string>",
"value": "<string>"
}
],
"industry": [
{
"code": "<string>",
"description": "<string>",
"system": "<string>",
"is_primary": true,
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"capital": {
"registered": {
"amount": 123,
"currency": "<string>"
},
"paid_up": {
"amount": 123,
"currency": "<string>"
}
},
"officers": [
{
"name": "<string>",
"type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"address_detail": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"states": [
"<string>"
],
"sources": [
"<string>"
]
}
],
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123,
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"contacts": [
{
"type": "<string>",
"value": "<string>",
"description": "<string>",
"start_date": "<string>",
"end_date": "<string>"
}
],
"name_history": [
{
"name": "<string>",
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"activity_history": [
{
"activity": "<string>",
"date": "<string>"
}
],
"latest_annual_return": {
"year_of_filing": "<string>",
"annual_meeting_date": "<string>"
}
},
"relationships": {
"sessions": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
}
}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>"
}
]
}Business API
Create Business Lookup
Create a new business registry lookup request. This will queue a task to fetch business information from country-specific vendor APIs.
Processing Modes:
- Async Mode (
async: true): Returns immediately with201 Createdand processing status. Client should poll the GET endpoint for completion. - Sync Mode (
async: false): Waits up to 45 seconds for completion.- If processing completes within 45 seconds: Returns
200 OKwith full business data. - If timeout occurs: Returns
201 Createdwith processing status (client should poll for completion).
- If processing completes within 45 seconds: Returns
Country Requirements:
- US: Requires
country,official_name, andaddress - BR: Requires
countryandregistration_number - GB: Requires
countryandregistration_number - ZZ: Test country, requires
countryand at least one input field (official_name,registration_number, oraddress)
Workflow:
- Call this endpoint to create a business lookup task
- The task is queued and processed by a country-specific service
- Poll the GET endpoint (or wait in sync mode) to retrieve results
Note: The business record is created immediately with async_status: processing. The record will be updated with results when processing completes.
POST
/
v1
/
businesses
Create business lookup
curl --request POST \
--url https://api.beltic.com/v1/businesses \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"data": {
"type": "business",
"meta": {
"search_parameters": {
"country": "US",
"input": {
"official_name": "<string>",
"registration_number": "<string>",
"address": "<string>"
},
"async": false
}
},
"relationships": {
"session": {
"data": {
"type": "session",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}
}
}
}
'import requests
url = "https://api.beltic.com/v1/businesses"
payload = { "data": {
"type": "business",
"meta": { "search_parameters": {
"country": "US",
"input": {
"official_name": "<string>",
"registration_number": "<string>",
"address": "<string>"
},
"async": False
} },
"relationships": { "session": { "data": {
"type": "session",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
} } }
} }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'business',
meta: {
search_parameters: {
country: 'US',
input: {
official_name: '<string>',
registration_number: '<string>',
address: '<string>'
},
async: false
}
},
relationships: {session: {data: {type: 'session', id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'}}}
}
})
};
fetch('https://api.beltic.com/v1/businesses', 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.beltic.com/v1/businesses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'business',
'meta' => [
'search_parameters' => [
'country' => 'US',
'input' => [
'official_name' => '<string>',
'registration_number' => '<string>',
'address' => '<string>'
],
'async' => false
]
],
'relationships' => [
'session' => [
'data' => [
'type' => 'session',
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.beltic.com/v1/businesses"
payload := strings.NewReader("{\n \"data\": {\n \"type\": \"business\",\n \"meta\": {\n \"search_parameters\": {\n \"country\": \"US\",\n \"input\": {\n \"official_name\": \"<string>\",\n \"registration_number\": \"<string>\",\n \"address\": \"<string>\"\n },\n \"async\": false\n }\n },\n \"relationships\": {\n \"session\": {\n \"data\": {\n \"type\": \"session\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n }\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.beltic.com/v1/businesses")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"business\",\n \"meta\": {\n \"search_parameters\": {\n \"country\": \"US\",\n \"input\": {\n \"official_name\": \"<string>\",\n \"registration_number\": \"<string>\",\n \"address\": \"<string>\"\n },\n \"async\": false\n }\n },\n \"relationships\": {\n \"session\": {\n \"data\": {\n \"type\": \"session\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n }\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beltic.com/v1/businesses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"business\",\n \"meta\": {\n \"search_parameters\": {\n \"country\": \"US\",\n \"input\": {\n \"official_name\": \"<string>\",\n \"registration_number\": \"<string>\",\n \"address\": \"<string>\"\n },\n \"async\": false\n }\n },\n \"relationships\": {\n \"session\": {\n \"data\": {\n \"type\": \"session\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n }\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"type": "business",
"attributes": {
"is_registered": true,
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>",
"registration_date": "<string>",
"dissolution_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"registered_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"physical_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"identifiers": [
{
"type": "<string>",
"value": "<string>"
}
],
"industry": [
{
"code": "<string>",
"description": "<string>",
"system": "<string>",
"is_primary": true,
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"capital": {
"registered": {
"amount": 123,
"currency": "<string>"
},
"paid_up": {
"amount": 123,
"currency": "<string>"
}
},
"officers": [
{
"name": "<string>",
"type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"address_detail": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"states": [
"<string>"
],
"sources": [
"<string>"
]
}
],
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123,
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"contacts": [
{
"type": "<string>",
"value": "<string>",
"description": "<string>",
"start_date": "<string>",
"end_date": "<string>"
}
],
"name_history": [
{
"name": "<string>",
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"activity_history": [
{
"activity": "<string>",
"date": "<string>"
}
],
"latest_annual_return": {
"year_of_filing": "<string>",
"annual_meeting_date": "<string>"
}
},
"relationships": {
"sessions": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
}
}
}{
"id": "<string>",
"type": "business",
"attributes": {
"is_registered": true,
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>",
"registration_date": "<string>",
"dissolution_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"registered_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"physical_address": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"identifiers": [
{
"type": "<string>",
"value": "<string>"
}
],
"industry": [
{
"code": "<string>",
"description": "<string>",
"system": "<string>",
"is_primary": true,
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"capital": {
"registered": {
"amount": 123,
"currency": "<string>"
},
"paid_up": {
"amount": 123,
"currency": "<string>"
}
},
"officers": [
{
"name": "<string>",
"type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"address_detail": {
"formatted_address": "<string>",
"street": "<string>",
"city": "<string>",
"state_or_province": "<string>",
"postal_code": "<string>",
"country": "<string>",
"street2": "<string>",
"po_box": "<string>",
"latitude": 123,
"longitude": 123,
"start_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
},
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
},
"states": [
"<string>"
],
"sources": [
"<string>"
]
}
],
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123,
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"contacts": [
{
"type": "<string>",
"value": "<string>",
"description": "<string>",
"start_date": "<string>",
"end_date": "<string>"
}
],
"name_history": [
{
"name": "<string>",
"effective_date": "<string>",
"end_date": "<string>",
"translation": {
"official_name": "<string>",
"status": "<string>",
"legal_form": "<string>"
}
}
],
"activity_history": [
{
"activity": "<string>",
"date": "<string>"
}
],
"latest_annual_return": {
"year_of_filing": "<string>",
"annual_meeting_date": "<string>"
}
},
"relationships": {
"sessions": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
}
}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>"
}
]
}Authorizations
API key for authentication. Access https://console.beltic.com/ to obtain your API key.
Body
application/json
Show child attributes
Show child attributes
Was this page helpful?
⌘I