// Replace API_KEY with your api key
curl --location 'https://api.supahub.com/api/v1/boards?sort=asc&privacy=all&limit=10&page=1' \
--header 'Authorization: Bearer API_KEY'
GET
method
/boards
path

Query Parameters

Below are the query parameters available for customizing the response:
sort
asc | desc
default:"asc"
Sorted by created date of the board.
privacy
all | public | private
default:"all"
Filters boards based on their privacy settings.
limit
1-100
default:"10"
Defines the number of boards to retrieve in one request.
page
1-n
default:"1"
Specifies the page number of results to retrieve.
// Replace API_KEY with your api key
curl --location 'https://api.supahub.com/api/v1/boards?sort=asc&privacy=all&limit=10&page=1' \
--header 'Authorization: Bearer API_KEY'