Skip to main content
GET
https://api.tensormesh.ai
/
v1
/
products
List Available Products
curl --request GET \
  --url https://api.tensormesh.ai/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "id": "<string>",
      "name": "<string>",
      "requiredGpuNum": 123,
      "family": "<string>",
      "isActive": true,
      "spec": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication using an access token. Format: Bearer <access_token>

Response

A successful response.

products
object[]