Skip to main content
GET
/
1
/
boards
/
{boardId}
/
views
/
{viewId}
Get a Board View
curl --request GET \
  --url https://api.honeycomb.io/1/boards/{boardId}/views/{viewId} \
  --header 'X-Honeycomb-Team: <api-key>'
{
  "id": "eC_abc123",
  "name": "Api and web slow requests errors",
  "filters": [
    {
      "column": "status",
      "operation": "=",
      "value": "error"
    },
    {
      "column": "duration_ms",
      "operation": ">",
      "value": 100
    },
    {
      "column": "service",
      "operation": "in",
      "value": [
        "api",
        "web"
      ]
    }
  ]
}

Authorizations

X-Honeycomb-Team
string
header
required

A Honeycomb Configuration Key is required to use this API. A Configuration Key can be found in the API Keys section of the environment configuration, which can be found under Environment Settings -> API Keys -> Configuration tab. Check out our documentation to find your API Keys.

More information can be found in Manage Environments.

Path Parameters

boardId
string
required

The unique identifier (ID) of a Board.

viewId
string
required

The unique identifier (ID) of a Board View.

Response

Success

id
string

Unique identifier for the board view.

Example:

"eC_abc123"

name
string

The name of the view.

Example:

"My View"

filters
object[]