Skip to main content
GET
/
1
/
boards
/
{boardId}
/
views
List Board Views
curl --request GET \
  --url https://api.honeycomb.io/1/boards/{boardId}/views \
  --header 'X-Honeycomb-Team: <api-key>'
[
  {
    "id": "eC_abc123",
    "name": "Errors View",
    "filters": [
      {
        "column": "status",
        "operation": "=",
        "value": "error"
      }
    ]
  },
  {
    "id": "yc_def456",
    "name": "Slow requests view",
    "filters": [
      {
        "column": "duration_ms",
        "operation": ">",
        "value": 1000
      }
    ]
  }
]

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.

Response

Success

Maximum array length: 50
id
string

Unique identifier for the board view.

Example:

"eC_abc123"

name
string

The name of the view.

Example:

"My View"

filters
object[]