v1

latestOpenAPI 3.0.32026-07-1419076.2 KB

Get Link By ID

This endpoint retrieves a link owned by a client.

get/links/{id}

Path parameters

idinteger required

The ID used to identify the link.

Response

200

Example response

{
  "data": {
    "id": 1,
    "name": "Test Link",
    "path": "testing",
    "redirect": "https://seebot.run",
    "status": "active",
    "health_status": "unknown",
    "domain_id": 1000,
    "generated_url": "http://seebot.test/testing",
    "tags": [
      {
        "id": 1,
        "name": "Important",
        "color": "#C0382B",
        "status": "active",
        "pivot": {
          "link_id": 7,
          "tag_id": 1
        }
      }
    ],
    "domain": {
      "id": 1000,
      "name": "seebot.test",
      "url": "seebot.test",
      "status": "active",
      "scope": "client"
    }
  }
}