Submit Batch
curl --request POST \
--url https://datamatcher-api.thedatacity.com/api/v1/match/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"companies": [
{
"id": "demo-001",
"input_name": "Sainsbury's Supermarkets Ltd"
},
{
"id": "demo-002",
"input_name": "John Lewis plc"
},
{
"id": "demo-003",
"input_name": "Holmes Joinery Partners LLP"
},
{
"id": "demo-004",
"input_name": "Queen Mary University of London"
},
{
"id": "demo-005",
"input_name": "AKQA Ltd"
},
{
"id": "demo-006",
"input_name": "Just Eat Limited"
},
{
"id": "demo-007",
"input_name": "AstraZeneca UK Limited"
},
{
"id": "demo-008",
"input_name": "Amazon UK Services Ltd"
},
{
"id": "demo-009",
"input_name": "Harrods Limited"
},
{
"id": "demo-010",
"input_name": "Network Rail Infrastructure Ltd"
}
]
}
EOFimport requests
url = "https://datamatcher-api.thedatacity.com/api/v1/match/batch"
payload = { "companies": [
{
"id": "demo-001",
"input_name": "Sainsbury's Supermarkets Ltd"
},
{
"id": "demo-002",
"input_name": "John Lewis plc"
},
{
"id": "demo-003",
"input_name": "Holmes Joinery Partners LLP"
},
{
"id": "demo-004",
"input_name": "Queen Mary University of London"
},
{
"id": "demo-005",
"input_name": "AKQA Ltd"
},
{
"id": "demo-006",
"input_name": "Just Eat Limited"
},
{
"id": "demo-007",
"input_name": "AstraZeneca UK Limited"
},
{
"id": "demo-008",
"input_name": "Amazon UK Services Ltd"
},
{
"id": "demo-009",
"input_name": "Harrods Limited"
},
{
"id": "demo-010",
"input_name": "Network Rail Infrastructure Ltd"
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
companies: [
{id: 'demo-001', input_name: 'Sainsbury\'s Supermarkets Ltd'},
{id: 'demo-002', input_name: 'John Lewis plc'},
{id: 'demo-003', input_name: 'Holmes Joinery Partners LLP'},
{id: 'demo-004', input_name: 'Queen Mary University of London'},
{id: 'demo-005', input_name: 'AKQA Ltd'},
{id: 'demo-006', input_name: 'Just Eat Limited'},
{id: 'demo-007', input_name: 'AstraZeneca UK Limited'},
{id: 'demo-008', input_name: 'Amazon UK Services Ltd'},
{id: 'demo-009', input_name: 'Harrods Limited'},
{id: 'demo-010', input_name: 'Network Rail Infrastructure Ltd'}
]
})
};
fetch('https://datamatcher-api.thedatacity.com/api/v1/match/batch', 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://datamatcher-api.thedatacity.com/api/v1/match/batch",
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([
'companies' => [
[
'id' => 'demo-001',
'input_name' => 'Sainsbury\'s Supermarkets Ltd'
],
[
'id' => 'demo-002',
'input_name' => 'John Lewis plc'
],
[
'id' => 'demo-003',
'input_name' => 'Holmes Joinery Partners LLP'
],
[
'id' => 'demo-004',
'input_name' => 'Queen Mary University of London'
],
[
'id' => 'demo-005',
'input_name' => 'AKQA Ltd'
],
[
'id' => 'demo-006',
'input_name' => 'Just Eat Limited'
],
[
'id' => 'demo-007',
'input_name' => 'AstraZeneca UK Limited'
],
[
'id' => 'demo-008',
'input_name' => 'Amazon UK Services Ltd'
],
[
'id' => 'demo-009',
'input_name' => 'Harrods Limited'
],
[
'id' => 'demo-010',
'input_name' => 'Network Rail Infrastructure Ltd'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://datamatcher-api.thedatacity.com/api/v1/match/batch"
payload := strings.NewReader("{\n \"companies\": [\n {\n \"id\": \"demo-001\",\n \"input_name\": \"Sainsbury's Supermarkets Ltd\"\n },\n {\n \"id\": \"demo-002\",\n \"input_name\": \"John Lewis plc\"\n },\n {\n \"id\": \"demo-003\",\n \"input_name\": \"Holmes Joinery Partners LLP\"\n },\n {\n \"id\": \"demo-004\",\n \"input_name\": \"Queen Mary University of London\"\n },\n {\n \"id\": \"demo-005\",\n \"input_name\": \"AKQA Ltd\"\n },\n {\n \"id\": \"demo-006\",\n \"input_name\": \"Just Eat Limited\"\n },\n {\n \"id\": \"demo-007\",\n \"input_name\": \"AstraZeneca UK Limited\"\n },\n {\n \"id\": \"demo-008\",\n \"input_name\": \"Amazon UK Services Ltd\"\n },\n {\n \"id\": \"demo-009\",\n \"input_name\": \"Harrods Limited\"\n },\n {\n \"id\": \"demo-010\",\n \"input_name\": \"Network Rail Infrastructure Ltd\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://datamatcher-api.thedatacity.com/api/v1/match/batch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"companies\": [\n {\n \"id\": \"demo-001\",\n \"input_name\": \"Sainsbury's Supermarkets Ltd\"\n },\n {\n \"id\": \"demo-002\",\n \"input_name\": \"John Lewis plc\"\n },\n {\n \"id\": \"demo-003\",\n \"input_name\": \"Holmes Joinery Partners LLP\"\n },\n {\n \"id\": \"demo-004\",\n \"input_name\": \"Queen Mary University of London\"\n },\n {\n \"id\": \"demo-005\",\n \"input_name\": \"AKQA Ltd\"\n },\n {\n \"id\": \"demo-006\",\n \"input_name\": \"Just Eat Limited\"\n },\n {\n \"id\": \"demo-007\",\n \"input_name\": \"AstraZeneca UK Limited\"\n },\n {\n \"id\": \"demo-008\",\n \"input_name\": \"Amazon UK Services Ltd\"\n },\n {\n \"id\": \"demo-009\",\n \"input_name\": \"Harrods Limited\"\n },\n {\n \"id\": \"demo-010\",\n \"input_name\": \"Network Rail Infrastructure Ltd\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://datamatcher-api.thedatacity.com/api/v1/match/batch")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"companies\": [\n {\n \"id\": \"demo-001\",\n \"input_name\": \"Sainsbury's Supermarkets Ltd\"\n },\n {\n \"id\": \"demo-002\",\n \"input_name\": \"John Lewis plc\"\n },\n {\n \"id\": \"demo-003\",\n \"input_name\": \"Holmes Joinery Partners LLP\"\n },\n {\n \"id\": \"demo-004\",\n \"input_name\": \"Queen Mary University of London\"\n },\n {\n \"id\": \"demo-005\",\n \"input_name\": \"AKQA Ltd\"\n },\n {\n \"id\": \"demo-006\",\n \"input_name\": \"Just Eat Limited\"\n },\n {\n \"id\": \"demo-007\",\n \"input_name\": \"AstraZeneca UK Limited\"\n },\n {\n \"id\": \"demo-008\",\n \"input_name\": \"Amazon UK Services Ltd\"\n },\n {\n \"id\": \"demo-009\",\n \"input_name\": \"Harrods Limited\"\n },\n {\n \"id\": \"demo-010\",\n \"input_name\": \"Network Rail Infrastructure Ltd\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "queued",
"total": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Endpoints
Submit Batch
Enqueue an async batch (max 1,000 companies). Poll GET /match/batch/.
POST
/
api
/
v1
/
match
/
batch
Submit Batch
curl --request POST \
--url https://datamatcher-api.thedatacity.com/api/v1/match/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"companies": [
{
"id": "demo-001",
"input_name": "Sainsbury's Supermarkets Ltd"
},
{
"id": "demo-002",
"input_name": "John Lewis plc"
},
{
"id": "demo-003",
"input_name": "Holmes Joinery Partners LLP"
},
{
"id": "demo-004",
"input_name": "Queen Mary University of London"
},
{
"id": "demo-005",
"input_name": "AKQA Ltd"
},
{
"id": "demo-006",
"input_name": "Just Eat Limited"
},
{
"id": "demo-007",
"input_name": "AstraZeneca UK Limited"
},
{
"id": "demo-008",
"input_name": "Amazon UK Services Ltd"
},
{
"id": "demo-009",
"input_name": "Harrods Limited"
},
{
"id": "demo-010",
"input_name": "Network Rail Infrastructure Ltd"
}
]
}
EOFimport requests
url = "https://datamatcher-api.thedatacity.com/api/v1/match/batch"
payload = { "companies": [
{
"id": "demo-001",
"input_name": "Sainsbury's Supermarkets Ltd"
},
{
"id": "demo-002",
"input_name": "John Lewis plc"
},
{
"id": "demo-003",
"input_name": "Holmes Joinery Partners LLP"
},
{
"id": "demo-004",
"input_name": "Queen Mary University of London"
},
{
"id": "demo-005",
"input_name": "AKQA Ltd"
},
{
"id": "demo-006",
"input_name": "Just Eat Limited"
},
{
"id": "demo-007",
"input_name": "AstraZeneca UK Limited"
},
{
"id": "demo-008",
"input_name": "Amazon UK Services Ltd"
},
{
"id": "demo-009",
"input_name": "Harrods Limited"
},
{
"id": "demo-010",
"input_name": "Network Rail Infrastructure Ltd"
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
companies: [
{id: 'demo-001', input_name: 'Sainsbury\'s Supermarkets Ltd'},
{id: 'demo-002', input_name: 'John Lewis plc'},
{id: 'demo-003', input_name: 'Holmes Joinery Partners LLP'},
{id: 'demo-004', input_name: 'Queen Mary University of London'},
{id: 'demo-005', input_name: 'AKQA Ltd'},
{id: 'demo-006', input_name: 'Just Eat Limited'},
{id: 'demo-007', input_name: 'AstraZeneca UK Limited'},
{id: 'demo-008', input_name: 'Amazon UK Services Ltd'},
{id: 'demo-009', input_name: 'Harrods Limited'},
{id: 'demo-010', input_name: 'Network Rail Infrastructure Ltd'}
]
})
};
fetch('https://datamatcher-api.thedatacity.com/api/v1/match/batch', 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://datamatcher-api.thedatacity.com/api/v1/match/batch",
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([
'companies' => [
[
'id' => 'demo-001',
'input_name' => 'Sainsbury\'s Supermarkets Ltd'
],
[
'id' => 'demo-002',
'input_name' => 'John Lewis plc'
],
[
'id' => 'demo-003',
'input_name' => 'Holmes Joinery Partners LLP'
],
[
'id' => 'demo-004',
'input_name' => 'Queen Mary University of London'
],
[
'id' => 'demo-005',
'input_name' => 'AKQA Ltd'
],
[
'id' => 'demo-006',
'input_name' => 'Just Eat Limited'
],
[
'id' => 'demo-007',
'input_name' => 'AstraZeneca UK Limited'
],
[
'id' => 'demo-008',
'input_name' => 'Amazon UK Services Ltd'
],
[
'id' => 'demo-009',
'input_name' => 'Harrods Limited'
],
[
'id' => 'demo-010',
'input_name' => 'Network Rail Infrastructure Ltd'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://datamatcher-api.thedatacity.com/api/v1/match/batch"
payload := strings.NewReader("{\n \"companies\": [\n {\n \"id\": \"demo-001\",\n \"input_name\": \"Sainsbury's Supermarkets Ltd\"\n },\n {\n \"id\": \"demo-002\",\n \"input_name\": \"John Lewis plc\"\n },\n {\n \"id\": \"demo-003\",\n \"input_name\": \"Holmes Joinery Partners LLP\"\n },\n {\n \"id\": \"demo-004\",\n \"input_name\": \"Queen Mary University of London\"\n },\n {\n \"id\": \"demo-005\",\n \"input_name\": \"AKQA Ltd\"\n },\n {\n \"id\": \"demo-006\",\n \"input_name\": \"Just Eat Limited\"\n },\n {\n \"id\": \"demo-007\",\n \"input_name\": \"AstraZeneca UK Limited\"\n },\n {\n \"id\": \"demo-008\",\n \"input_name\": \"Amazon UK Services Ltd\"\n },\n {\n \"id\": \"demo-009\",\n \"input_name\": \"Harrods Limited\"\n },\n {\n \"id\": \"demo-010\",\n \"input_name\": \"Network Rail Infrastructure Ltd\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://datamatcher-api.thedatacity.com/api/v1/match/batch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"companies\": [\n {\n \"id\": \"demo-001\",\n \"input_name\": \"Sainsbury's Supermarkets Ltd\"\n },\n {\n \"id\": \"demo-002\",\n \"input_name\": \"John Lewis plc\"\n },\n {\n \"id\": \"demo-003\",\n \"input_name\": \"Holmes Joinery Partners LLP\"\n },\n {\n \"id\": \"demo-004\",\n \"input_name\": \"Queen Mary University of London\"\n },\n {\n \"id\": \"demo-005\",\n \"input_name\": \"AKQA Ltd\"\n },\n {\n \"id\": \"demo-006\",\n \"input_name\": \"Just Eat Limited\"\n },\n {\n \"id\": \"demo-007\",\n \"input_name\": \"AstraZeneca UK Limited\"\n },\n {\n \"id\": \"demo-008\",\n \"input_name\": \"Amazon UK Services Ltd\"\n },\n {\n \"id\": \"demo-009\",\n \"input_name\": \"Harrods Limited\"\n },\n {\n \"id\": \"demo-010\",\n \"input_name\": \"Network Rail Infrastructure Ltd\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://datamatcher-api.thedatacity.com/api/v1/match/batch")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"companies\": [\n {\n \"id\": \"demo-001\",\n \"input_name\": \"Sainsbury's Supermarkets Ltd\"\n },\n {\n \"id\": \"demo-002\",\n \"input_name\": \"John Lewis plc\"\n },\n {\n \"id\": \"demo-003\",\n \"input_name\": \"Holmes Joinery Partners LLP\"\n },\n {\n \"id\": \"demo-004\",\n \"input_name\": \"Queen Mary University of London\"\n },\n {\n \"id\": \"demo-005\",\n \"input_name\": \"AKQA Ltd\"\n },\n {\n \"id\": \"demo-006\",\n \"input_name\": \"Just Eat Limited\"\n },\n {\n \"id\": \"demo-007\",\n \"input_name\": \"AstraZeneca UK Limited\"\n },\n {\n \"id\": \"demo-008\",\n \"input_name\": \"Amazon UK Services Ltd\"\n },\n {\n \"id\": \"demo-009\",\n \"input_name\": \"Harrods Limited\"\n },\n {\n \"id\": \"demo-010\",\n \"input_name\": \"Network Rail Infrastructure Ltd\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "queued",
"total": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Customer API key (dm_live_…)
Body
application/json
Required array length:
1 - 1000 elementsShow child attributes
Show child attributes
URL to POST once when the job completes, fails, or is cancelled. Must be https except in local development.
Minimum string length:
1Optional HMAC-SHA256 secret. When set, the webhook includes X-DataMatcher-Signature: sha256= over the raw JSON body.
Required string length:
16 - 128Last modified on September 9, 2026