Department of the Treasury Sanctions Lists API

SDN and Consolidated Sanctions list downloads

Operations 2

GET /lists/sdn Download the Specially Designated Nationals (SDN) List #
GET /lists/consolidated Download the Consolidated Sanctions List #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/department-of-the-treasury-sanctions-lists-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

department-of-the-treasury-sanctions-lists-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OFAC Sanctions List Service Sanctions Lists API
  description: The Office of Foreign Assets Control (OFAC) at the U.S. Department of the Treasury publishes the Specially Designated Nationals (SDN) and Consolidated Sanctions lists in machine-readable formats. The Sanctions List Service (SLS) exposes the lists as JSON, XML, and PDF, plus a structured search endpoint for screening individuals and entities against OFAC programs.
  version: '1'
  contact:
    name: OFAC
    url: https://ofac.treasury.gov/contact-ofac
  license:
    name: Public Domain
    url: https://creativecommons.org/publicdomain/mark/1.0/
servers:
- url: https://sanctionslistservice.ofac.treas.gov/api
  description: OFAC Sanctions List Service
tags:
- name: Sanctions Lists
  description: SDN and Consolidated Sanctions list downloads
paths:
  /lists/sdn:
    get:
      tags:
      - Sanctions Lists
      summary: Download the Specially Designated Nationals (SDN) List
      operationId: getSdnList
      parameters:
      - name: format
        in: query
        schema:
          type: string
          enum:
          - json
          - xml
          - csv
          - pdf
          default: json
      responses:
        '200':
          description: SDN list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SanctionsListResponse'
  /lists/consolidated:
    get:
      tags:
      - Sanctions Lists
      summary: Download the Consolidated Sanctions List
      operationId: getConsolidatedList
      parameters:
      - name: format
        in: query
        schema:
          type: string
          enum:
          - json
          - xml
          - csv
      responses:
        '200':
          description: Consolidated list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SanctionsListResponse'
components:
  schemas:
    SanctionedEntity:
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        type:
          type: string
          enum:
          - Individual
          - Entity
          - Aircraft
          - Vessel
        programs:
          type: array
          items:
            type: string
        addresses:
          type: array
          items:
            type: object
        akas:
          type: array
          items:
            type: object
            properties:
              category:
                type: string
              type:
                type: string
              lastName:
                type: string
              firstName:
                type: string
        ids:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
              number:
                type: string
              country:
                type: string
        nationalities:
          type: array
          items:
            type: string
        sanctionsListType:
          type: string
          enum:
          - SDN
          - Consolidated
    SanctionsListResponse:
      type: object
      properties:
        publishDate:
          type: string
          format: date
        results:
          type: array
          items:
            $ref: '#/components/schemas/SanctionedEntity'
externalDocs:
  description: OFAC Sanctions List Service
  url: https://sanctionslistservice.ofac.treas.gov/