Skip to main content
GET
/
api
/
vertical
Get the current vertical (public)
curl --request GET \
  --url https://your-instance.example.com/api/vertical
{
  "vertical": {
    "_id": "65b1f0a2c3d4e5f6a7b8c9d0",
    "name": "TetherAI",
    "createdAt": "2026-01-12T09:15:00.000Z",
    "updatedAt": "2026-04-04T17:42:00.000Z"
  }
}

Response

Vertical returned

Response from GET /api/vertical.

vertical
object
required

The single vertical configured for this deployment. On the fallback path (no record exists yet) only name is populated.

Example:
{
"_id": "65b1f0a2c3d4e5f6a7b8c9d0",
"name": "TetherAI",
"createdAt": "2026-01-12T09:15:00.000Z",
"updatedAt": "2026-04-04T17:42:00.000Z"
}