Content & ServicesDeveloper Platform
Get Device List
Quick Guide
Prerequisites
- Make sure you have retrieved and saved your API key in the Dot. App;
The API rate limit is 10 requests per second. With the API, you can control device behavior and responses more flexibly.
Placeholders wrapped in '{{variable}}' indicate values you must replace. Fill them with your actual values and remove the '{{}}' braces.
Request Examples
GET
/api/authV2/open/devicesGenerated Code
1curl --request GET \
2 --url https://dot.mindreset.tech/api/authV2/open/devices \
3 --header 'Authorization: Bearer {{API_KEY}}' \
4 --header 'Content-Type: application/json'Response Example
[
{
"series": "quote",
"model": "quote_0",
"edition": 1,
"id": "ABCD1234ABCD"
},
{
"series": "quote",
"model": "quote_0",
"edition": 2,
"id": "ABCD5112ABCD"
}
]Troubleshooting
Endpoint
/api/authV2/open/devices
Method
GET
Request Schema
This interface does not require a request body, only an API key in the request header.
Response Schema
Prop
Type
Device list array
Array Items
Device serial number
Device series (e.g., quote)
Device model (e.g., quote_0)
Device edition (1 or 2)
Status Codes
| code | Meaning | Description |
|---|---|---|
200 | Success | Successfully retrieved device list |
401 | Unauthorized | Invalid or expired API key |
500 | Server Error | Internal server error |
Did this solve your problem?
Join our community