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": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt

Use this file to discover all available pages before exploring further.

Use this group for product catalog reads and product administration. Public and admin operations share one published group today:
  • Public product discovery uses /v1/products
  • Admin catalog management uses /v1/admin/products
If you are documenting or onboarding a non-admin user, start with the public read path and treat the admin operations below as environment-management actions. Public operations: Admin operations:

Authorizations

Authorization
string
header
required

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

Response

A successful response.

products
object[]