> ## Documentation Index
> Fetch the complete documentation index at: https://docs.researchanddesire.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get DTT device by ID

> Returns detailed information about a specific Deepthroat Trainer device.



## OpenAPI

````yaml https://dashboard.researchanddesire.com/openapi.yaml get /dtt/{id}
openapi: 3.1.0
info:
  title: Research And Desire API
  description: >
    The Research And Desire API provides programmatic access to your devices and
    data.


    All responses follow a standard envelope format:

    - Success: `{ "ok": true, "data": <result> }`

    - Error: `{ "ok": false, "error": "<message>" }`


    ## Pagination


    List endpoints support pagination via query parameters:

    - `limit`: Number of records to return (default: 50, max: 100)

    - `offset`: Number of records to skip (default: 0)


    Paginated responses include pagination metadata alongside the data array.


    ## Authentication


    All endpoints require a Bearer token in the Authorization header.

    Tokens can be created in the Dashboard settings (requires Ultra
    subscription).
  version: 1.0.0
  contact:
    name: Research And Desire Support
    url: https://www.researchanddesire.com/support
servers:
  - url: https://dashboard.researchanddesire.com/api/v1
    description: Production API
security:
  - bearerAuth: []
tags:
  - name: Users
    description: User account information
  - name: DTT
    description: Deepthroat Trainer devices
  - name: DTT Templates
    description: Deepthroat Trainer training program templates
  - name: DTT Sessions
    description: Deepthroat Trainer training session history
  - name: LKBX
    description: Chastity Lockbox devices
  - name: Lock Templates
    description: Lock templates
  - name: Lock Sessions
    description: Lock session management
  - name: OSSM
    description: Open Source Sex Machine devices
paths:
  /dtt/{id}:
    get:
      tags:
        - DTT
      summary: Get DTT device by ID
      description: Returns detailed information about a specific Deepthroat Trainer device.
      operationId: getDttDevice
      parameters:
        - $ref: '#/components/parameters/DttDeviceId'
      responses:
        '200':
          description: DTT device details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DttDeviceDetailResponse'
              example:
                ok: true
                data:
                  id: 1
                  bubbleId: dtt-001
                  ownerId: 42
                  macAddress: AA:BB:CC:DD:EE:FF
                  serialNumber: DTT-2024-001
                  softwareVersion: 1.2.3
                  lastVisited: '2026-02-18T12:00:00Z'
                  lastLogAt: '2026-02-18T11:30:00Z'
                  createdDate: '2025-06-01T10:00:00Z'
                  apiHits: 150
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: DTT device not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                ok: false
                error: DTT device not found
components:
  parameters:
    DttDeviceId:
      name: id
      in: path
      required: true
      description: The DTT device ID
      schema:
        type: integer
        minimum: 1
        example: 1
  schemas:
    DttDeviceDetailResponse:
      type: object
      required:
        - ok
        - data
      properties:
        ok:
          type: boolean
          const: true
        data:
          $ref: '#/components/schemas/DttDevice'
    ErrorResponse:
      type: object
      required:
        - ok
        - error
      properties:
        ok:
          type: boolean
          const: false
        error:
          type: string
    DttDevice:
      type: object
      properties:
        id:
          type: integer
          description: Device ID
        bubbleId:
          type: string
          description: Unique public identifier
        ownerId:
          type: integer
          description: Owner user ID
        macAddress:
          type: string
          description: Device MAC address
        serialNumber:
          type: string
          description: Device serial number
        softwareVersion:
          type: string
          description: Current firmware version
        lastVisited:
          type: string
          format: date-time
          description: Last connection time
        lastLogAt:
          type: string
          format: date-time
          description: Last log entry time
        createdDate:
          type: string
          format: date-time
          description: Device registration date
        apiHits:
          type: integer
          description: API call count
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            ok: false
            error: Invalid ID
    Unauthorized:
      description: Authentication required or token invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            ok: false
            error: Unauthorized
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |
        API tokens can be created in the Dashboard settings.
        Requires an Ultra subscription.

````