Look up an identifier across all subject-register sources
Accepts a typed identifier ({ type, value }) and returns every matching entry across all registered subject_register sources (sanctions lists, ownership registers, etc.). No compliance verdict is applied — callers wire their own downstream logic.
Response content is negotiated via the Accept header:
application/json(default) —StandardResponse[SubjectsResponse].application/x-ndjson— server-side fan-out streamed as NDJSON, one frame per source completion (meta, thensourceper candidate, thensummary).
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
User-supplied identifier for the lookup. Required.
Matching operator applied against the identifier value. equals performs an exact case-insensitive match on the canonicalized value. ilike performs a SQL ILIKE pattern match (supports % wildcards).
equals, ilike Optional caller-provided reference identifier for audit/trace.
128Pin the lookup to a specific subject-register source name (e.g. 'ofac_sdn'). When absent, all registered subject_register sources are searched.
64