cogmoteGO
  1. exps
cogmoteGO
  • data
    • Get experiments data
      GET
  • broadcast
    • List data broadcasting
      GET
    • Create data broadcasting
      POST
    • Subscribe data broadcasting
      GET
    • Get latest data
      GET
    • Upload data to specific data broadcasting
      POST
    • Delete broadcast
      DELETE
    • Subscribe mock data broadcasting
      GET
    • Get latest mock data
      GET
    • Subscribe default data broadcasting
      GET
    • Get latest data from default data broadcasting endpoint
      GET
    • Upload data to default data broadcasting
      POST
  • cmds
    • proxies
      • Get all command proxy
      • Create command proxy
      • Send command to proxy
      • Delete all command proxies
      • Delete a command proxy
  • exps
    • List experiment records
      GET
    • Register experiment
      POST
    • Delete experiments
      DELETE
    • Get experiment
      GET
    • Update experiment record
      PUT
    • Delete experiment
      DELETE
    • Init git experiment
      POST
    • update experiment git repository
      PUT
    • Switch to a branch
      POST
    • init archive experiment
      POST
    • Update archive experiment
      PUT
    • Start experiment
      POST
    • Start experiment by cmd
      POST
    • Stop experiment
      POST
  • infos
    • Get cagelab information
    • Update cagelab infomations
  • Get cagelab health
    GET
  • Get cagelab realtime status
    GET
  • Get whether cogmoteGO is running
    GET
  • Get device infomation
    GET
  1. exps

List experiment records

Developing
GET
/api/exps
Last modified:2025-06-22 08:58:31

Request

None

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:9012/api/exps'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": "d968e11c-2da6-412b-a448-e00d8fae517a",
        "status": "ullamco dolor",
        "branch": "adipisicing dolor anim",
        "register_time": "1749228342206",
        "latest_update_time": "2025-06-07 00:45:42",
        "experiment": {
            "nickname": "Small Bronze Pants",
            "type": "git",
            "address": "https://simple-flu.org/",
            "add_to_path": true,
            "execs": [
                {
                    "nickname": "do nisi non",
                    "exec": "cupidatat sint adipisicing"
                }
            ]
        }
    },
    {
        "id": "60e71922-3336-43aa-8030-48abddb42509",
        "status": "aliquip culpa",
        "branch": "pariatur qui",
        "register_time": "1749228342209",
        "latest_update_time": "2025-06-07 00:45:42",
        "experiment": {
            "nickname": "Licensed Steel Ball",
            "type": "git",
            "address": "https://assured-submitter.info",
            "add_to_path": true,
            "execs": [
                {
                    "nickname": "id",
                    "exec": "ad dolore"
                },
                {
                    "nickname": "laborum ut dolore id",
                    "exec": "dolor ex incididunt culpa"
                },
                {
                    "nickname": "deserunt velit sed",
                    "exec": "velit exercitation"
                }
            ]
        }
    },
    {
        "id": "1cef3bbf-8930-4da9-8111-6df002cd4f27",
        "status": "mollit irure ut fugiat do",
        "branch": null,
        "register_time": "1749228342210",
        "latest_update_time": "2025-06-07 00:45:42",
        "experiment": {
            "nickname": "Intelligent Soft Soap",
            "type": "bin",
            "address": "https://natural-issue.org",
            "add_to_path": false,
            "execs": [
                {
                    "nickname": "laborum veniam incididunt",
                    "exec": "veniam laborum deserunt eu qui"
                },
                {
                    "nickname": "exercitation proident",
                    "exec": "laborum commodo"
                },
                {
                    "nickname": "consectetur non id",
                    "exec": "Lorem Excepteur"
                }
            ]
        }
    }
]
Modified at 2025-06-22 08:58:31
Previous
Delete a command proxy
Next
Register experiment
Built with