/api/models

Last updated on 26th March 2024

GET

Returns the array of simulation models present on the server.

Request

Example request

curl -X GET http://localhost:8080/api/models -H 'Accept: application/json'

Response

Status Meaning Description
200 OK A JSON array of simulations

Response Schema

Status Code 200

Example 200 response body

{
  "results": [
    {
      "name": "Game of Life",
      "kind": "pojo"
    },
    { ... }
  ]
}
Name Type Required
results [object] true
» name string true
» kind string