Simple

UX

Get to music as quickly as possible by choosing between 4 different user experience options: Calm, Sleep, Focus and Energize.

This option does not require the input of the user’s emotional state to kick-off the experience; instead, a default starting state is assigned depending on the selected mode (i.e., for ‘Calm’ experiences, a default ‘tense’ starting state is set).

Begin

SIMPLE UX

UX

Option

1:

Calm

experience

Make 2 requests back-to-back, allowing you to start the audio experience right away.


//POST Experience - URL
proxy.core.thelucidproject.ca/experiences
//Request Body
{
  "modeId":"calm",
  "contentLibraryId":"immersive",
  "desiredLength":6, // this length is recommended
  "participantId":"annonymous_user_id" // this can be any STRING
}
//GET Audio
proxy.core.thelucidproject.ca/experiences/"_id"/audio  
// _id from experience request 
One

SIMPLE UX

UX

option

2:

Sleep experience

Make 2 requests back-to-back, allowing you to start the audio experience right away.

Request Body:

//POST Experience - URL
proxy.core.thelucidproject.ca/experiences
//Request Body
{
  "modeId":"sleep",
  "contentLibraryId":"immersive",
  "desiredLength":6, // this length is recommended
  "participantId":"annonymous_user_id" // this can be any STRING
}
//GET Audio
proxy.core.thelucidproject.ca/experiences/"_id"/audio  
// _id from experience request
One

SIMPLE UX

UX

Option

3:

Focus experience

Make 2 requests back-to-back, allowing you to start the audio experience right away.

Request Body:

//POST Experience - URL
proxy.core.thelucidproject.ca/experiences
//Request Body
{
  "modeId":"focus",
  "contentLibraryId":"immersive",
  "desiredLength":6, // this length is recommended
  "participantId":"annonymous_user_id" // this can be any STRING
}
//GET Audio
proxy.core.thelucidproject.ca/experiences/"_id"/audio  
// _id from experience request
One

SIMPLE UX

UX

Option

4:

Energize

experience

Make 2 requests back-to-back, allowing you to start the audio experience right away.

Request Body:

//POST Experience - URL
proxy.core.thelucidproject.ca/experiences
//Request Body
{
  "modeId":"energize",
  "contentLibraryId":"immersive",
  "desiredLength":6, // this length is recommended
  "participantId":"annonymous_user_id" // this can be any STRING
}
//GET Audio
proxy.core.thelucidproject.ca/experiences/"_id"/audio  
// _id from experience request
One
One