Query parameters
-
page_number number
The page number retrieved in the paginated results. The default value is 1.
-
page_size number
The number of items to include in each page of the paginated results. The default value is 100.
-
sort string
The sort field used to filter data.
Values are
created_at
orname
. Default value iscreated_at
.
GET
/companies
curl \
-X GET https://api.fipto.app/companies
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": [
{
"id": "string",
"type": "company",
"attributes": {
"name": "Acme inc",
"asset_primary": "BTC",
"payout_required_confirmations": 2
}
}
]
}
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": [
{
"id": "string",
"type": "company",
"attributes": {
"name": "Acme inc",
"asset_primary": "BTC",
"payout_required_confirmations": 2
}
}
]
}