Light Logo
Authenticated user

List models owned by the authenticated user

Retrieve a paginated list of all models owned by the authenticated user. The models are sorted by creation time, newest to oldest.

GET
/user/models
AuthorizationBearer <token>

In: header

Query Parameters

cursor?Cursor

The starting point to fetch the next set of items.

page_size?Page Size

The number of results per page.

Default25
Range5 <= value <= 50

Response Body

curl -X GET "https://api.wrift.ai/v1/user/models?cursor=string&page_size=25"
{
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "name": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "visibility": "private",
      "description": "string",
      "updated_at": "2019-08-24T14:15:22Z",
      "source_url": "http://example.com",
      "license_url": "http://example.com",
      "paper_url": "http://example.com",
      "owner": {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "username": "string",
        "avatar_url": "string"
      },
      "predictions_count": 0,
      "categories": [
        {
          "name": "string",
          "slug": "string"
        }
      ]
    }
  ],
  "next_cursor": "string",
  "previous_cursor": "string",
  "next_url": "http://example.com",
  "previous_url": "http://example.com"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}