Skip to main content
GET
/
api
/
alerts
/
{id}
Get Alert
curl --request GET \
  --url https://gdeltcloud.com/api/alerts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "alert": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "sql_query": "<string>",
    "tables_used": [
      "<string>"
    ],
    "check_frequency": "hourly",
    "notification_email": "[email protected]",
    "enabled": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "description": "<string>",
    "natural_language_description": "<string>",
    "last_triggered_at": "<string>",
    "last_check_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Alert rule ID

Response

Successful response

success
boolean
required
alert
object
required