# Sanctioned entities (New) The sanctions entities endpoint provides a comprehensive list of entities sanctioned by a specified authority, such as OFAC, UK, EU, or AU. Users can retrieve detailed information about individuals, organizations, and other entities subject to sanctions from the chosen source, facilitating compliance and risk management processes. **API credits cost:** `50` per request > **Note:** This API endpoint is available starting with the [Ultra](https://twelvedata.com/pricing) plan. ## Parameters - `source` (string, required) Sanctions source ## Response - `sanctions` (array of object) List of sanctioned entities - `symbol` (string) The instrument symbol ticker - `name` (string) The instrument name - `mic_code` (string) Market Identifier Code (MIC) under ISO 10383 standard - `country` (string) Country name - `sanction` (object) - `source` (string) The sanction source - `program` (string) The sanction program - `notes` (string) Notes for the sanction - `lists` (array of object) Sanction lists - `name` (string) The sanction list name - `published_at` (string) The sanction published date in the current sanctions list - `count` (integer) Total number of sanctioned entities - `status` (string) Response status ## Example Request ```bash curl "https://api.twelvedata.com/sanctions/ofac?apikey=demo" ``` ## Example Response ```json { "sanctions": [ { "symbol": "LOKESHMACH", "name": "Lokesh Machines Ltd.", "mic_code": "NSE", "country": "India", "sanction": { "source": "ofac", "program": "RUSSIA-EO14024", "notes": "Block", "lists": [ { "name": "SDN List", "published_at": "2024-10-30" } ] } } ], "count": 143, "status": "ok" } ```