GET
/
v2
/
apps
Get Available Apps
curl --request GET \
  --url https://alerts-api.dial.to/v2/apps \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Dialect-Client-Key: <x-dialect-client-key>'
{
  "apps": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "icon": "<string>",
      "subscribed": true,
      "topics": [
        {
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "name": "Price Alerts",
          "description": "Receive alerts when prices drop below a certain threshold",
          "slug": "price-alerts",
          "subscribed": true
        }
      ],
      "channels": [
        {
          "channel": "IN_APP",
          "subscribed": true
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication for subscriber calls

Headers

X-Dialect-Client-Key
string
required

Client Key used to uniquely identify the client

Example:

"dk_gyh2eqzfkc4mhp5eiahnndkz"

Response

200
application/json

Available apps with detailed subscription and topic information

The response is of type object.