// Replace API_KEY with your api key and :boardId with board id
curl --location 'https://api.supahub.com/api/v1/boards/:boardId' \
--header 'Authorization: Bearer API_KEY'
To retrieve details for a single board using the Supahub API, you can follow the provided examples for several programming environments and tools. To construct your request, you must replace API_KEY with your actual API key and :boardId with the ID of the board you wish to retrieve.
GET
method
/boards/:boardId
path

Path Parameters

boardId
string
required
Identifier of the board you are requesting information for.
// Replace API_KEY with your api key and :boardId with board id
curl --location 'https://api.supahub.com/api/v1/boards/:boardId' \
--header 'Authorization: Bearer API_KEY'