Health¶
Application health and readiness checks.
GET /api/v1/health¶
Returns the application status and index statistics.
Request
GET /api/v1/health HTTP/1.1
Host: localhost:8080
Response
{
"status": "UP",
"index": {
"totalEntities": 12847,
"lastUpdated": "2026-03-18T02:00:00Z",
"countBySource": {
"OFAC_SDN": 12847
},
"countByType": {
"INDIVIDUAL": 8234,
"ENTITY": 4200,
"VESSEL": 312,
"AIRCRAFT": 101
}
}
}
Response Fields
Field |
Type |
Description |
|---|---|---|
|
string |
Application status ( |
|
integer |
Total number of indexed sanctioned entities |
|
ISO 8601 |
When the index was last populated |
|
object |
Entity count per list source |
|
object |
Entity count per entity type |
Example
curl http://localhost:8080/api/v1/health