curl --request GET \
--url https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id}', 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.engine.usesophic.com/persons/{person_id}/claims/{claim_id}",
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.engine.usesophic.com/persons/{person_id}/claims/{claim_id}"
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.engine.usesophic.com/persons/{person_id}/claims/{claim_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id}")
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{
"archived_at": "2026-07-20T08:15:00Z",
"claim_type": "identity",
"created_at": "2026-07-14T09:30:00Z",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"id": "<string>",
"last_name": "<string>",
"lifecycle": "active",
"person": "<string>",
"status": "pending",
"superseded_at": "2026-08-01T12:00:00Z",
"verified_at": "2026-07-14T10:00:00Z"
}{
"code": "<string>",
"detail": "<string>",
"context": {},
"docs": "<string>",
"params": [
{
"code": "<string>",
"detail": "<string>",
"path": [
123
]
}
]
}Retrieve a person claim
Retrieve a single claim for a person by person ID and claim ID.
curl --request GET \
--url https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id}', 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.engine.usesophic.com/persons/{person_id}/claims/{claim_id}",
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.engine.usesophic.com/persons/{person_id}/claims/{claim_id}"
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.engine.usesophic.com/persons/{person_id}/claims/{claim_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engine.usesophic.com/persons/{person_id}/claims/{claim_id}")
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{
"archived_at": "2026-07-20T08:15:00Z",
"claim_type": "identity",
"created_at": "2026-07-14T09:30:00Z",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"id": "<string>",
"last_name": "<string>",
"lifecycle": "active",
"person": "<string>",
"status": "pending",
"superseded_at": "2026-08-01T12:00:00Z",
"verified_at": "2026-07-14T10:00:00Z"
}{
"code": "<string>",
"detail": "<string>",
"context": {},
"docs": "<string>",
"params": [
{
"code": "<string>",
"detail": "<string>",
"path": [
123
]
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the person.
The ID of the claim.
Response
OK
- IdentityPersonClaim
- NationalitiesPersonClaim
- ResidencePersonClaim
- TaxResidenciesPersonClaim
- FatcaStatusPersonClaim
- PepStatusPersonClaim
- EducationLevelPersonClaim
- EmploymentPersonClaim
- FinancialProfilePersonClaim
- InvestmentExperiencePersonClaim
- RegistrationPersonClaim
- ContactDetailsPersonClaim
- LeiPersonClaim
- RegisteredAddressPersonClaim
- OperatingAddressPersonClaim
- BusinessNaturePersonClaim
- ExpectedActivityPersonClaim
- RelationshipsPersonClaim
Date and time a newer pending claim replaced this row; null if this is the current pending row.
"2026-07-20T08:15:00Z"
Date and time the claim was created.
"2026-07-14T09:30:00Z"
Unique resource identifier.
Derived lifecycle role from status, archived_at, and superseded_at.
active, in_flight, historical ID of the person this claim belongs to.
Claim status (pending or verified). Non-null superseded_at means a newer verified claim replaced this row.
pending, verified Date and time a newer verified claim replaced this row; null if this is the current row.
"2026-08-01T12:00:00Z"
Date and time the claim was verified; null while pending.
"2026-07-14T10:00:00Z"