API
The Foxglove REST API offers a programmatic interface for accessing and interacting with Foxglove resources.
The Foxglove API provides endpoints for interacting with the following:
- Data resources
- Visualization tools
View the Foxglove API Reference for more details on all available endpoints.
API keys
Organization admins must create an API key from the Settings page.
Python client
Note: As of v0.5.0, all methods require the use of keyword arguments.
Foxglove provides a Python client library (foxglove-client
) to more easily interact with the Foxglove API.
See specific examples for each endpoint in the API reference.
from foxglove.client import Client
token = "<YOUR API TOKEN HERE>"
client = Client(token=token)