Get statement
curl --request GET \
--url https://api.anchorage-staging.com/v2/statements/{statementId} \
--header 'Api-Access-Key: <api-key>'import requests
url = "https://api.anchorage-staging.com/v2/statements/{statementId}"
headers = {"Api-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Access-Key': '<api-key>'}};
fetch('https://api.anchorage-staging.com/v2/statements/{statementId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"customerId": "3ed6ef079913cb5e786c03f73326511b0bbebc438f941cb13650d48650904fc6",
"createdAt": "2025-09-01T00:47:16.937934Z",
"displayName": "RIA Statement September 2025",
"id": "2cfb5ca8-8a71-11f0-969e-42010a1f04ea",
"typeId": "058da362-31a7-4e2b-ae3e-77b095389a5f"
}
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}Get statement
Get a statement.
GET
/
statements
/
{statementId}
Get statement
curl --request GET \
--url https://api.anchorage-staging.com/v2/statements/{statementId} \
--header 'Api-Access-Key: <api-key>'import requests
url = "https://api.anchorage-staging.com/v2/statements/{statementId}"
headers = {"Api-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Access-Key': '<api-key>'}};
fetch('https://api.anchorage-staging.com/v2/statements/{statementId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"customerId": "3ed6ef079913cb5e786c03f73326511b0bbebc438f941cb13650d48650904fc6",
"createdAt": "2025-09-01T00:47:16.937934Z",
"displayName": "RIA Statement September 2025",
"id": "2cfb5ca8-8a71-11f0-969e-42010a1f04ea",
"typeId": "058da362-31a7-4e2b-ae3e-77b095389a5f"
}
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}{
"message": "Missing required field 'amount'."
}Was this page helpful?
⌘I