GET api/v2/requisites

General information about endpoints

InformationDescription

Description

Retrieves a list of requisites based on various filters.

Route

GET api/v2/requisites

Permissions

Private

Request Parameters:

Parameter

Type

Required

Description

page

integer

No

Pagination page number

per_page

integer

No

Number of items per page

search

string

Optional

Search by partial match on address, tag, description, or name

state

string

Optional

Filter by status

asset

string

Optional

Filter by asset (mutually exclusive with dchain)

dchain

string

Optional

Filter by dchain (mutually exclusive with asset)

name

string

Optional

Search by name

address

string

Optional

Search by address

sort

string

Optional

Sort order, either asc or desc

sort_by

string

Optional

Field to sort by

Response:

{
"total_count" : 2,
"per_page" : 2,
"total_pages" : 1,
"page" : 1,
"prev_page" : ,
"next_page" : ,
"items" : [
{
"address" : TWYEoEaLDRLDjnBqbQcupYkcPxyHzNVj2J,
"address_control_verified" : true,
"asset_id" : usdt,
"cex_id" : ,
"cex_name" : ,
"control" : ,
"created_at" : 20240603T21:23:38.784Z,
"dchain_id" : trc20usdt,
"deleted_at" : ,
"description" : ,
"high_risk" : ,
"id" : 1050,
"name" : ggg,
"other_cex_country" : ,
"other_cex_name" : ,
"otp" : true,
"rejection_reason" : ,
"requisite_additional_information" : ,
"soiled" : false,
"source" : internal,
"state" : processing,
"tag" : ,
"uid" : 15589053726,
"updated_at" : 20240603T21:23:38.816Z,
"wallet_type" : custodial,
"whitelist" : false
},
{
"address" : TVUkrxZUU2b4o21VGbcvZi32knibRoFCmU,
"address_control_verified" : true,
"asset_id" : usdt,
"cex_id" : ,
"cex_name" : ,
"control" : ,
"created_at" : 20240531T20:14:48.949Z,
"dchain_id" : trc20usdt,
"deleted_at" : ,
"description" : ,
"high_risk" : ,
"id" : 1037,
"name" : test,
"other_cex_country" : ,
"other_cex_name" : ,
"otp" : true,
"rejection_reason" : ,
"requisite_additional_information" : ,
"soiled" : false,
"source" : internal,
"state" : approved,
"tag" : ,
"uid" : 15589046472,
"updated_at" : 20240531T20:14:49.312Z,
"wallet_type" : custodial,
"whitelist" : false
}
]
}