Luxor Documentation Hub Logo
Mining Pool/API Documentation/Workspaces

Get watcherlink by ID

Retrieve a specific watcherlink by its ID.

GET
/v1/workspace/watcher-links/{watcherLinkId}

Authorization

authorization<token>

Use your API key here.

In: header

Path Parameters

watcherLinkIdRequiredstring

The ID of the watcher link to retrieve.

Format: "uuid"
curl -X GET "https://app.luxor.tech/api/v1/workspace/watcher-links/aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa" \
  -H "authorization: <token>"

Response body for obtaining a watcher link by ID

{
  "code": "watcher-de99dd173d394388ab27df5393faf348",
  "name": "My watcher link",
  "id": "265299a1-1730-4eef-9844-b874f622cf34",
  "views": 100,
  "created_at": "2021-01-01T00:00:00Z",
  "updated_at": "2021-01-01T00:00:00Z",
  "subaccounts": [
    {
      "id": 0,
      "name": "subaccount_1"
    }
  ]
}