v1

latestOpenAPI 3.1.02026-07-24239123562.1 KB
tetraspheres

List all tetraspheres for namespace/slug

Returns a list of all tetrasphere artifacts given a namespace and slug

get/v1/artifacts/tetraspheres/{namespace}/{slug}

Path parameters

namespacestring required

Artifact namespace. Should be common, private-, or client-

slugstring required

Artifact slug

Query parameters

latest_onlyboolean

Only return the latest version of each artifact

include_prereleasesboolean

Include prerelease artifacts in search

Response

Successfully fetched TetrasphereObject list

namespacestring required
slugstring required
versionstring required
namestring nullable
descriptionstring nullable
createdAtstring date-time required
lastUpdatedAtstring date-time required
otherVersionsstring[]
type'tetrasphere' required

Example response

[
  {
    "type": "tetrasphere",
    "namespace": "private-test",
    "slug": "tetrasphere",
    "version": "v0.5.0",
    "createdAt": "2024-04-25T15:15:34.269Z",
    "lastUpdatedAt": "2023-04-25T17:15:34.269Z",
    "name": "Tetrasphere",
    "description": "A tetrasphere",
    "otherVersions": [
      "v0.1.0",
      "v0.5.0"
    ]
  }
]