Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.39 KB

File metadata and controls

60 lines (39 loc) · 1.39 KB

DefaultApi

All URIs are relative to http://localhost

Method HTTP request Description
statusStatusGet GET /status Status

statusStatusGet

{ [key: string]: string; } statusStatusGet()

Status

Example

import { Configuration, DefaultApi } from '@saiden/tensors'
import type { StatusStatusGetRequest } from '@saiden/tensors'

async function example() {
  console.log('🚀 Testing @saiden/tensors SDK...')
  const api = new DefaultApi()

  try {
    const data = await api.statusStatusGet()
    console.log(data)
  } catch (error) {
    console.error(error)
  }
}

// Run the test
example().catch(console.error)

Parameters

This endpoint does not need any parameter.

Return type

{ [key: string]: string; }

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful Response -

[Back to top] [Back to API list] [Back to Model list] [Back to README]