REST API Service
Get data
REST API Service
Get data
Get all data sources for an app
GET
/
{app_id}
/
data
curl --request GET \
--url http://localhost:8080/{app_id}/data
{
"results": [
{
"data_type": "web_page",
"data_value": "https://www.forbes.com/profile/elon-musk/",
"metadata": "null"
}
]
}
curl --request GET \
--url http://localhost:8080/{app_id}/data
{
"results": [
{
"data_type": "web_page",
"data_value": "https://www.forbes.com/profile/elon-musk/",
"metadata": "null"
}
]
}
Path Parameters
Response
200
application/json
Successful Response
The response is of type any
.
Was this page helpful?
curl --request GET \
--url http://localhost:8080/{app_id}/data
{
"results": [
{
"data_type": "web_page",
"data_value": "https://www.forbes.com/profile/elon-musk/",
"metadata": "null"
}
]
}