GET
/
fine_tuned_models
curl --request GET \
  --url https://api.timesdb.in/fine_tuned_models \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "status": "QUEUED",
      "config": {
        "context_length": 123,
        "prediction_length": 123,
        "use_rope_scaling": true,
        "num_samples": 123,
        "max_epochs": 123
      },
      "input_config": {
        "dataset_ids": [
          "<string>"
        ],
        "dataset_tags": [
          "<string>"
        ],
        "series_ids": [
          "<string>"
        ],
        "series": [
          {
            "timestamp": "2023-11-07T05:31:56Z",
            "value": 123,
            "metadata": {}
          }
        ]
      },
      "base_model": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "current_page": "<string>",
  "current_page_backwards": "<string>",
  "previous_page": "<string>",
  "next_page": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Successful Response
items
object[]
required
total
integer

Total items

current_page
string

Cursor to refetch the current page

current_page_backwards
string

Cursor to refetch the current page starting from the last item

previous_page
string

Cursor for the previous page

next_page
string

Cursor for the next page