Screening Lists
Retrieve all the lists available through a Screening Check
URL
Headers
Name
Type
Description
Example request
curl -X GET https://api.complycube.com/v1/static/screeningLists \
-H 'Authorization: <YOUR_API_KEY>' const { ComplyCube } = require("@complycube/api");
const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" });
const screeningLists = await complycube.static.listScreeningLists();from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
result = ccapi.static.screening_lists()use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$lists = $ccapi->screeningLists();using ComplyCube.Net;
using ComplyCube.Net.Resources.Clients;
var slistsapi = new sListsApi(new ComplyCubeClient("<YOUR_API_KEY>"));
var result = screeningListsApi.GetAsync().Result;Example response
[
"African Development Bank Group (AFDB) List of Debarred Entities",
"DNB (Netherlands) Sanction Regulation 2006",
"HM Treasury Consolidated List",
"NYSE American Disciplinary Actions",
"Singapore Police Force Commercial Crimes Prosecution List",
...
]
