Skip to main content
GET
/
dtt
/
templates
/
{id}
Get DTT template by ID
curl --request GET \
  --url https://dashboard.researchanddesire.com/api/v1/dtt/templates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "id": 1,
    "bubbleId": "prog-001",
    "ownerId": 42,
    "name": "Beginner Program",
    "description": "A gentle introduction",
    "tagline": "Start here",
    "message": "Welcome!",
    "isPublic": true,
    "isActive": true,
    "handsFreeMode": false,
    "targetDepth": 50,
    "targetWindow": 10,
    "toyId": null,
    "createdDate": "2025-06-01T10:00:00Z",
    "updatedAt": "2026-02-01T15:00:00Z",
    "Segment": [
      {
        "id": 1,
        "type": "warmup",
        "duration": 60,
        "repeat": 1
      },
      {
        "id": 2,
        "type": "training",
        "duration": 300,
        "repeat": 3
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API tokens can be created in the Dashboard settings. Requires an Ultra subscription.

Path Parameters

id
integer
required

The DTT template (training program) ID

Required range: x >= 1
Example:

1

Response

DTT template with segments

ok
boolean
required
data
object
required