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>",
"subscribed": true,
"topics": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Price Alerts",
"slug": "price-alerts",
"subscribed": true,
"description": "Receive alerts when prices drop below a certain threshold"
}
],
"channels": [
{
"channel": "IN_APP",
"subscribed": true
}
],
"description": "<string>",
"icon": "<string>"
}
]
}Get all applications available to the authenticated user with subscription status, topics, and channel availability
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>",
"subscribed": true,
"topics": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Price Alerts",
"slug": "price-alerts",
"subscribed": true,
"description": "Receive alerts when prices drop below a certain threshold"
}
],
"channels": [
{
"channel": "IN_APP",
"subscribed": true
}
],
"description": "<string>",
"icon": "<string>"
}
]
}Bearer token authentication for subscriber calls
Client Key used to uniquely identify the client
"dk_gyh2eqzfkc4mhp5eiahnndkz"
Available apps with detailed subscription and topic information
Show child attributes
Whether the subscriber has enabled notifications for at least one channel of this app
true
Subscriber's topics this app.
Show child attributes
Unique identifier for the topic
"123e4567-e89b-12d3-a456-426614174000"
Name of the topic
"Price Alerts"
Human-readable slug of the topic
"price-alerts"
Whether the subscriber has enabled notifications for this topic
true
Description of the topic
"Receive alerts when prices drop below a certain threshold"
Was this page helpful?