Find up to 10 company matches by name and match rate. Result includes IAF IDs.
Required Fields Only - Company Name Required Fields Only - Company Identifiers Some Fields Are Null All Fields Have Values
Copy {
"company_name": "IAF",
"company_country": "Australia",
"company_identifiers": {
"vat": null,
"tax_id": null,
"business_registration_number": null,
"duns_number": null,
"company_id_number": null
},
"match_rate": 90,
"match_result_count": 10
}
Copy {
"company_name": null,
"company_country": "Australia",
"company_identifiers": {
"vat": "VAT",
"tax_id": "TAX ID",
"business_registration_number": "BUSINESS REGISTRATION NUMBER",
"duns_number": "DUNS NUMBER",
"company_id_number": "COMPANY ID NUMBER"
},
"match_rate": 90,
"match_result_count": 10
}
Copy {
"company_name": "IAF",
"company_country": "Australia",
"company_identifiers": {
"vat": null,
"tax_id": null,
"business_registration_number": null,
"duns_number": "DUNS NUMBER",
"company_id_number": "COMPANY ID NUMBER"
},
"match_rate": 100,
"match_result_count": 10
}
Copy {
"company_name": "QualityTrade",
"company_country": "Australia",
"company_identifiers": { // Have priority over company_name
"vat": "VAT",
"tax_id": "TAX ID",
"business_registration_number": "BUSINESS REGISTRATION NUMBER",
"duns_number": "DUNS NUMBER",
"company_id_number": "COMPANY ID NUMBER"
},
"match_rate": 100,
"match_result_count": 10
}
cURL Ruby Python PHP Java Node.js Go C#
Copy curl --location --request POST '{API_URL}/match-companies' \
--header 'x-http-authorization: <API_KEY>' \
--header 'Content-Type: application/json' \
--data '{
"company_country": "string",
"company_name": "string",
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
},
"match_rate": 90,
"match_result_count": 10
}'
Copy require "uri"
require "json"
require "net/http"
url = URI("{API_URL}/match-companies")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["x-http-authorization"] = "<API_KEY>"
request["Content-Type"] = "application/json"
request.body = JSON.dump({
"company_country": "string",
"company_name": "string",
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
},
"match_rate": 90,
"match_result_count": 10
})
response = http.request(request)
puts response.read_body
Copy import http.client
import json
conn = http.client.HTTPConnection("{API_URL}")
payload = json.dumps({
"company_country": "string",
"company_name": "string",
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
},
"match_rate": 90,
"match_result_count": 10
})
headers = {
'x-http-authorization': '<API_KEY>',
'Content-Type': 'application/json'
}
conn.request("POST", "/match-companies", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Copy <?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => '{API_URL}/match-companies',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"company_country": "string",
"company_name": "string",
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
},
"match_rate": 90,
"match_result_count": 10
}',
CURLOPT_HTTPHEADER => array(
'x-http-authorization: <API_KEY>',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Copy OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n \"company_country\": \"string\",\n \"company_name\": \"string\",\n \"company_identifiers\": {\n \"vat\": \"string\",\n \"tax_id\": \"string\",\n \"business_registration_number\": \"string\",\n \"duns_number\": \"string\",\n \"company_id_number\": \"string\"\n },\n \"match_rate\": 90,\n \"match_result_count\": 10\n}");
Request request = new Request.Builder()
.url("{API_URL}/match-companies")
.method("POST", body)
.addHeader("x-http-authorization", "<API_KEY>")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
Copy const axios = require('axios');
let data = JSON.stringify({
"company_country": "string",
"company_name": "string",
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
},
"match_rate": 90,
"match_result_count": 10
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: '{API_URL}/match-companies',
headers: {
'x-http-authorization': '<API_KEY>',
'Content-Type': 'application/json'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Copy package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "{API_URL}/match-companies"
method := "POST"
payload := strings.NewReader(`{
"company_country": "string",
"company_name": "string",
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
},
"match_rate": 90,
"match_result_count": 10
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("x-http-authorization", "<API_KEY>")
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
Copy var options = new RestClientOptions("{API_URL}")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/match-companies", Method.Post);
request.AddHeader("x-http-authorization", "<API_KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"{" + "\n" +
@" ""company_country"": ""string""," + "\n" +
@" ""company_name"": ""string""," + "\n" +
@" ""company_identifiers"": {" + "\n" +
@" ""vat"": ""string""," + "\n" +
@" ""tax_id"": ""string""," + "\n" +
@" ""business_registration_number"": ""string""," + "\n" +
@" ""duns_number"": ""string""," + "\n" +
@" ""company_id_number"": ""string""" + "\n" +
@" }," + "\n" +
@" ""match_rate"": 90," + "\n" +
@" ""match_result_count"": 10" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
200: OK - With Results 200: OK - No Results 400: Bad Request - Validation Errors 401: Unauthorized Access 403: Forbidden Access 429: Too Many Requests
Copy {
"data": [
{
"ce_id": string,
"matched_certified_entity_name": string,
"match_status": string,
"match_type": string,
"certified_entity_english_name": string,
"certified_entity_trading_name": string,
"country": string,
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
},
"certified_entity_addresses": [
{
"state": string,
"country": string
}
],
},
...
]
}
Copy {
"type": "string",
"title": "Validation errors.",
"status": 400,
"detail": "The request body has validation errors.",
"instance": "/match-companies",
"code": "validation",
"errors": [
{
"field": "field_name",
"detail": "error_message"
}
]
}
Copy {
"type": "string",
"title": "Unauthorized access.",
"status": 401,
"detail": "Authentication failed due to invalid credentials or missing token.",
"instance": "/match-companies",
"code": "unauthorized"
}
Copy {
"type": "string",
"title": "Forbidden access.",
"status": 403,
"detail": "You do not have access to this resource.",
"instance": "/match-companies",
"code": "forbidden"
}
Copy {
"type": "string",
"title": "Too many requests.",
"status": 429,
"detail": "Too many requests. Please try again later.",
"instance": "/match-companies",
"code": "too_many_requests"
}