ID Analyzer · Schema
ID Analyzer AML Search Request
Request schema for the ID Analyzer /aml endpoint. Searches global sanctions lists, PEP databases, and watchlists.
Identity VerificationKYCAMLDocument OCRBiometricsFace MatchingFraud DetectionPassportDriver LicenseLiveness Detection
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Person or business name to search in AML databases. |
| idNumber | string | Document or ID number to search in AML databases. |
| entity | integer | Entity type for the search subject. |
| country | string | Two-digit ISO 3166-1 alpha-2 country code to narrow the search by nationality or country of origin. |
| database | array | Specific AML databases to search. Searches all available databases if omitted. |
| birthYear | string | Year of birth to narrow the search results. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/idanalyzer/main/json-schema/idanalyzer-aml-request.json",
"title": "ID Analyzer AML Search Request",
"description": "Request schema for the ID Analyzer /aml endpoint. Searches global sanctions lists, PEP databases, and watchlists.",
"type": "object",
"anyOf": [
{"required": ["name"]},
{"required": ["idNumber"]}
],
"properties": {
"name": {
"type": "string",
"description": "Person or business name to search in AML databases."
},
"idNumber": {
"type": "string",
"description": "Document or ID number to search in AML databases."
},
"entity": {
"type": "integer",
"description": "Entity type for the search subject.",
"enum": [0, 1],
"default": 0,
"x-enum-descriptions": {
"0": "Person / Individual",
"1": "Corporation / Legal Entity"
}
},
"country": {
"type": "string",
"description": "Two-digit ISO 3166-1 alpha-2 country code to narrow the search by nationality or country of origin.",
"pattern": "^[A-Z]{2}$",
"examples": ["US", "GB", "DE"]
},
"database": {
"type": "array",
"description": "Specific AML databases to search. Searches all available databases if omitted.",
"items": {
"type": "string"
},
"examples": [["us_ofac", "eu_fsf", "un_sc"]]
},
"birthYear": {
"type": "string",
"description": "Year of birth to narrow the search results.",
"pattern": "^\\d{4}$",
"examples": ["1975"]
}
},
"additionalProperties": false
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/idanalyzer-aml-request"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.