GET
https://{BaseURL}
/
api
/
public
/
datamodels
curl --request GET \
  --url https://{BaseURL}/api/public/datamodels \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<datamodel id>",
      "name": "<datamodel name>",
      "description": "<datamodel description>",
      "user": {
        "id": "<user id>",
        "name": "<user name>",
        "email": "<user email>"
      },
      "folder": {
        "id": "<folder id>",
        "name": "<folder name>"
      }
    }
  ]
}

Extract all your models as JSON.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

The response is of type object.