Image
Dot. Manual
Image
Dot. Manual
Back to home

FAQ

How to Change NetworksCommon Pairing IssuesTap-to-Interact Launch Issues / App Clip Unavailable

Dot.

Install Dot. AppDiagnostic ToolKnown Issues

Quote

Quote/0
Pairing Quote/0How to TapShare with Family and FriendsHow to Charge
Update DeviceReset NetworkReset DeviceChangelog

Content & Services

Content Studio
RSS
Shortcuts
Co Create
Software
CastCardDiablo II Resurrected Terror Zone & Uber Diablo Alert ToolDot Calendar - Weather Calendar for Quote/0DotCanvasDotClientDot Crypto TickerDot MateIntelligent Poetry Weather Generation SystemMindReset Dot MCP (Lakphy)Quote/0 Send DemoQuote/0 + Calendar ShortcutQuote/0 Evening SummaryQuote/0 Flash NoteQuote/0 Health ReminderQuote/0 + Holiday ShortcutQuote/0 MCP (stvlynn)Quote/0 MCP (thomaszdxsn)Quote/0 + WAY 2 Reminder ShortcutQuote/0 Yearly Progress CalendarServer Status
Hardware
IKEA SKÅDIS MountQuote/0 Carry Case HangerQuote/0 Desktop Charging Mini StandQuote/0 Desktop Stand (Andrrrrrrija)Quote/0 Desktop Stand (MindReset)Quote/0 Desktop Mini StandQuote/0 Monitor Mount (Kiiko)Quote/0 Excerpt Mount (GLB_wegoo777)Quote/0 Monitor Mount (TLL)
Developer Platform
What is an APIGet API KeyGet Device Serial NumberGet Device ListGet Device StatusSwitch to Next ContentList Device TasksControl Text ContentControl Image Content
Roadmap

Explore More Possibilities

Request New ContentJoin Our Content Studio

Security

MSA-2025-08-001MSA-2025-09-001MSA-2025-09-002MSA-2025-10-001MSA-2025-10-002MSA-2025-10-003
Responsible Disclosure Policy

More

Privacy PolicyUser AgreementContact UsAbout MindReset
Content & ServicesDeveloper Platform
Image

Get Device List

Quick Guide

Prerequisites

  1. 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/devices

Get your API token from Dot. App

Generated 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

codeMeaningDescription
200SuccessSuccessfully retrieved device list
401UnauthorizedInvalid or expired API key
500Server ErrorInternal server error

Did this solve your problem?

Join our community

Get Device Serial Number

Retrieve the device serial number from the Dot. App to use Dot.'s API features in other applications.

Get Device Status

Next

Contents

Quick GuidePrerequisitesRequest ExamplesResponse ExampleTroubleshootingEndpointMethodRequest SchemaResponse SchemaStatus Codes