curl --request GET \
--url https://app.herondata.io/api/app_store/list \
--header 'x-api-key: <api-key>'
{
"applications": [
{
"cta": {
"text": "CTA Text",
"url": "https://example.com/cta"
},
"description": "This is an example application.",
"file_classes": [
{
"description": "description1",
"name": "file_class1"
},
{
"description": "description2",
"name": "file_class2"
}
],
"image": "https://example.com/image.png",
"integrations": [
"integration1",
"integration2"
],
"name": "Example App",
"tags": [
"tag1",
"tag2"
],
"type": "enricher",
"use_cases": [
"use_case1",
"use_case2"
]
}
]
}
List available apps
curl --request GET \
--url https://app.herondata.io/api/app_store/list \
--header 'x-api-key: <api-key>'
{
"applications": [
{
"cta": {
"text": "CTA Text",
"url": "https://example.com/cta"
},
"description": "This is an example application.",
"file_classes": [
{
"description": "description1",
"name": "file_class1"
},
{
"description": "description2",
"name": "file_class2"
}
],
"image": "https://example.com/image.png",
"integrations": [
"integration1",
"integration2"
],
"name": "Example App",
"tags": [
"tag1",
"tag2"
],
"type": "enricher",
"use_cases": [
"use_case1",
"use_case2"
]
}
]
}
OK
The response is of type object
.
Was this page helpful?