Last updated on 16th July 2024
Returns the array of simulation models present on the server.
Example request
curl -X GET http://localhost:8080/api/models -H 'Accept: application/json'
Status | Meaning | Description |
---|---|---|
200 | OK | A JSON array of simulations |
Status Code 200
Name | Type | Required |
---|---|---|
results | [object] | true |
» name | string | true |
» kind | string |
Example 200 response body
{
"results": [
{
"name": "Game of Life",
"kind": "pojo"
},
{ ... }
]
}