GET
/
api
/
app_store
/
list
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"
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Response

200 - application/json

OK

The response is of type object.