Logo
Fireblocks API Documentation

Get all cosigners

GET {{baseUrl}}/cosigners

Get all workspace cosigners (paginated) Note: These endpoints are currently in beta and might be subject to changes.

 

Body PARAM

Key Datatype Required Description 
order
string ASC / DESC ordering (default DESC)
pageCursor
string Cursor of the required page
pageSize
number Maximum number of items in the page



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "data": [ { "archived": "<boolean>", "id": "<uuid>", "name": "<string>" }, { "archived": "<boolean>", "id": "<uuid>", "name": "<string>" } ], "next": "<string>" }


Curl
curl -X GET 'https://api.fireblocks.io/v1/cosigners?order=DESC&pageCursor=<string>&pageSize=10' -H 'Accept: application/json'

ENDPOINTS