Skip to main content
GET
/
data
/
views
/
{hub_schema_name}
/
{data_view_name}
Get Data View
curl --request GET \
  --url https://api.polydata.co/v1/data/views/{hub_schema_name}/{data_view_name} \
  --header 'Authorization: Bearer <token>'
Retrieve a specific data view from a hub.

Path Parameters

hub_schema_name
string
required
The schema name of the hub containing the data view
data_view_name
string
required
The name of the data view to retrieve

Query Parameters

include_data
boolean
default:"true"
Whether to include the actual data in the response. Set to false to only get metadata.

Authentication

Authorization
string
required
Bearer token with your API key

Example Request

curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.polydata.co/v1/data/views/intraocular/top_5_players"