Thought 2 X - EEG Data Predictions, Internal Monologue, and Mental Imagery!

Unlock the potential of AI to decipher EEG data. The Thought2x endpoint transforms raw EEG data into either visual (Image) or textual (Text) representations. Dive into this page to learn how to utilize Thought2x via the OpenDream API.

EEG Data Interpretation Model

This model elucidates the raw EEG readings, rendering them into images or textual insights, depending on the user's requirements.

Properties

  • Name
    type
    Type
    string
    Description

    The format of EEG interpretation, either as 'Image' or 'Text'.

  • Name
    timestamp
    Type
    timestamp
    Description

    Timestamp linked with the EEG data interpretation.

  • Name
    interpretation
    Type
    object
    Description

    The resultant content derived from EEG data, presented either visually or in textual form.

  • Name
    link
    Type
    string
    Description

    A direct link to view the detailed interpretation.


GET/opendream/v1/eeg_interpretations.json

Fetch EEG Interpretations

Leverage this endpoint to translate raw EEG data into images or textual content. Specify the desired interpretation type, EEG data, timestamp, and data quality to obtain the transformed content.

Parameters

  • Name
    type
    Type
    string
    Description

    Desired format of EEG interpretation: 'Image' or 'Text'.

  • Name
    eegData
    Type
    map
    Description

    Raw EEG data set for interpretation.

  • Name
    timestamp
    Type
    timestamp
    Description

    Timestamp linked with the EEG data.

  • Name
    quality
    Type
    string
    Description

    Accepted quality of EEG data.

Request

GET
/opendream/v1/eeg_interpretations.json
curl -G https://api.opendream.org/opendream/v1/eeg_interpretations.json \
  -H "Authorization: Bearer {token}" \
  -d type=Image \
  -d eegData="{...}" \
  -d timestamp="2023-11-10T12:00:00Z" \
  -d quality=high

Response

{
  "type": "Image",
  "data": [
    {
      "timestamp": "2023-11-10T12:00:00Z",
      "interpretation": {
        "url": "https://opendream.org/data/interpretations/image1.jpg"
      }
    },
    ...
  ],
  "link": "https://opendream.org/data/interpretations"
}

Was this page helpful?