API Reference
Search…
API Reference
v1.7.3
Introduction
Integration
Sandbox and Live
Authentication
Rate Limits
Service Quota
Errors
Pagination
Filtering
Versioning
Core resources
Clients
Create a client
Get a client
Update a client
Delete a client
List clients
Filtering clients
Addresses
Documents
Live Photos
Live Videos
Checks
Risk Profile
Check types
AML Screening Check
Document Check
Identity Check
Enhanced Identity Check
Proof of Address Check
Multi-Bureau Check
Face Authentication Check
Lookups
Company Search
Address Search
Tools
Custom Lists
Static Data
Screening Lists
Supported Documents
Other Resources
Flow (Hosted Solution)
Webhooks
SDK Tokens
Autofill
Reports
Team Members
Audit Logs
Account Info
Powered By
GitBook
List clients
get
https://api.complycube.com
/v1/clients
List clients
You can use
pagination
and
client filters
for this endpoint.
Example request
cURL
Node.js
Python
PHP
.NET
1
curl
-X GET https://api.complycube.com/v1/clients
\
2
-H
'Authorization: <YOUR_API_KEY>'
Copied!
1
const
{
ComplyCube
}
=
require
(
"@complycube/api"
);
2
​
3
const
complycube
=
new
ComplyCube
({
apiKey
:
"<YOUR_API_KEY>"
});
4
​
5
const
clients
=
await
complycube
.
client
.
list
();
Copied!
1
from
complycube
import
ComplyCubeClient
2
​
3
cc_api
=
ComplyCubeClient
(
api_key
=
'<YOUR_API_KEY>'
)
4
​
5
client_list
=
cc_api
.
clients
.
list
()
Copied!
1
use
ComplyCube
\
ComplyCubeClient
;
2
​
3
$ccapi
=
new
ComplyCubeClient
(
'<YOUR_API_KEY>'
);
4
​
5
$clients
=
$ccapi
->
clients
()
->
list
();
Copied!
1
using
ComplyCube
.
Net
;
2
using
ComplyCube
.
Net
.
Resources
.
Clients
;
3
​
4
var
clientApi
=
new
ClientApi
(
new
ComplyCubeClient
(
"<YOUR_API_KEY>"
));
5
​
6
var
clients
=
await
clientApi
.
ListAsync
();
Copied!
​
Previous
Delete a client
Next
Filtering clients
Last modified
7mo ago
Copy link
Contents
get
List clients
Example request