GET
/
api
/
v1
/
folder
/
list
curl --request GET \
  --url https://dash.betteruseblockchain.com/api/v1/folder/list \
  --header 'Authorization: Bearer <token>'
{
  "message": "Success",
  "data": [
    {
      "id": "string",
      "title": "string",
      "created_at": "string"
    }
  ],
  "pagination": {
    "total": 10,
    "per_page": 5,
    "current_page": 1,
    "last_page": 2,
    "has_more_pages": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

folder_id
string

ID of the folder to filter the list. If not provided, all folders will be listed.

limit
integer

Limit the number of items returned per page.

order_by
string

Order the list by a specific field (e.g., created_at).

Response

200
application/json
Success
message
string
Example:

"Success"

data
object[]
pagination
object