Skip to content

List platforms

GET
/api/platforms
curl --request GET \
--url 'http://localhost:3000/api/platforms?page=1&sort=name&order=asc' \
--cookie session=<session>
page
integer
default: 1 >= 1

Page number (1-based)

pageSize
integer
>= 1 <= 10000

Rows per page. Omitted = full table, capped at 10000.

search
string

Case-insensitive substring match across name, slug, NOS family, description

sort
string
Allowed values: name slug nosFamily createdAt

Sort column

order
string
Allowed values: asc desc

Sort direction

Success

Media type application/json
object
data
required
Array<object>
object
id
required
string format: uuid
name
required
string
slug
string
nullable
manufacturerId
string format: uuid
nullable
description
string
nullable
nosFamily
string
nullable
typicalDevices
string
nullable
keyFeatures
string
nullable
commonUseCases
string
nullable
commercialStatus
string
nullable
automationApis
Array<string>
popular
boolean
source
string
Allowed values: vendor customer
createdAt
required
string format: date-time
updatedAt
required
string format: date-time
total
required
integer
page
required
integer
pageSize
required
integer
hasMore
required
boolean
Example
{
"data": [
{
"source": "vendor"
}
]
}

Invalid filter param

Media type application/json
object
error
required
string
Example
{
"error": "Not found"
}

Not authenticated

Media type application/json
object
error
required
string
Example
{
"error": "Not found"
}