LevelBlue Alarms API
Endpoints for managing and searching alarm messages.
Endpoints for managing and searching alarm messages.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/levelblue-alarms-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: USM Anywhere™ API Reference Alarms API
description: AT&T Cybersecurity publishes REST APIs for USM Anywhere that provide a programmatic interface that will allow you to access your data directly from your own applications and extensions.
version: '2.0'
servers:
- url: https://your-subdomain.alienvault.cloud/api/2.0
description: USM Anywhere API Server
security:
- bearerAuth: []
tags:
- name: Alarms
description: Endpoints for managing and searching alarm messages.
paths:
/alarms:
get:
tags:
- Alarms
summary: Get a page of alarms
description: Retrieves a paginated list of alarms. Can be filtered by various parameters.
parameters:
- name: page
in: query
description: The page number of results to return (zero-based).
schema:
type: integer
- name: size
in: query
description: The number of results to return per page.
schema:
type: integer
- name: sort
in: query
description: The parameter and direction to sort results by.
schema:
type: string
example: timestamp_occured,asc
- name: status
in: query
description: Filter by the status of the alarm.
schema:
type: array
items:
type: string
enum:
- open
- closed
- in_review
- name: suppressed
in: query
description: Filter alarms by the suppressed flag.
schema:
type: boolean
- name: rule_intent
in: query
description: Filter by the intent of the rule that triggered the alarm.
schema:
type: string
- name: rule_method
in: query
description: Filter by the method of the rule that triggered the alarm.
schema:
type: string
- name: rule_strategy
in: query
description: Filter by the strategy of the rule that triggered the alarm.
schema:
type: string
- name: priority_label
in: query
description: Filter by the priority of the alarm.
schema:
type: array
items:
type: string
enum:
- low
- medium
- high
- name: alarm_sensor_sources
in: query
description: Filter by the UUID of the sensor.
schema:
type: string
format: uuid
- name: timestamp_occured_gte
in: query
description: Filter for alarms that occurred at or after this timestamp (epoch milliseconds).
schema:
type: integer
format: int64
- name: timestamp_occured_lte
in: query
description: Filter for alarms that occurred at or before this timestamp (epoch milliseconds).
schema:
type: integer
format: int64
responses:
'200':
description: A paginated list of alarms.
content:
application/json:
schema:
$ref: '#/components/schemas/AlarmPage'
example:
_links:
first:
href: https://mysubdomain.alienvault.cloud/api/2.0/alarms?page=0&size=20&sort=timestamp_occured,desc
self:
href: https://mysubdomain.alienvault.cloud/api/2.0/alarms
next:
href: https://mysubdomain.alienvault.cloud/api/2.0/alarms?page=1&size=20&sort=timestamp_occured,desc
last:
href: https://mysubdomain.alienvault.cloud/api/2.0/alarms?page=175&size=20&sort=timestamp_occured,desc
_embedded:
alarms:
- uuid: 971918fd-a569-548a-5a80-1ffcda2a8365
priority: 20
status: open
rule_intent: Environmental Awareness
page:
size: 20
totalElements: 3506
totalPages: 176
number: 0
/alarms/{alarmId}:
get:
tags:
- Alarms
summary: Get Alarm Details
description: Retrieves the full details for a single alarm by its UUID.
parameters:
- name: alarmId
in: path
required: true
description: The UUID of the alarm to retrieve.
schema:
type: string
format: uuid
responses:
'200':
description: Alarm details retrieved successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/Alarm'
example:
uuid: 971918fd-a569-548a-5a80-1ffcda2a8365
has_alarm: false
needs_enrichment: true
priority: 20
suppressed: false
events:
- uuid: f5e69126-dc89-6691-e2e7-6db03905830d
rule_intent: Environmental Awareness
status: open
_links:
self:
href: https://mysubdomain.aveng.us/api/2.0/alarms/971918fd-a569-548a-5a80-1ffcda2a8365
'404':
description: Alarm not found.
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/alarms/{alarmId}/labels:
get:
tags:
- Alarms
summary: List labels for an alarm
description: Retrieves a list of label IDs associated with a specific alarm.
parameters:
- name: alarmId
in: path
required: true
description: The UUID of the alarm.
schema:
type: string
format: uuid
responses:
'200':
description: A list of label IDs.
content:
application/json:
schema:
$ref: '#/components/schemas/AlarmLabels'
example:
alarm_labels:
- 971918fd-a569-548a-5a80-1ffcda2a8365
'404':
description: Alarm not found.
/alarms/{alarmId}/labels/{labelId}:
put:
tags:
- Alarms
summary: Add a label to an alarm
description: Associates a label with a specific alarm.
parameters:
- name: alarmId
in: path
required: true
description: The UUID of the alarm.
schema:
type: string
format: uuid
- name: labelId
in: path
required: true
description: The ID of the label to add.
schema:
type: string
responses:
'200':
description: Label added successfully.
'404':
description: Alarm or Label not found.
delete:
tags:
- Alarms
summary: Remove a label from an alarm
description: Disassociates a label from a specific alarm.
parameters:
- name: alarmId
in: path
required: true
description: The UUID of the alarm.
schema:
type: string
format: uuid
- name: labelId
in: path
required: true
description: The ID of the label to remove.
schema:
type: string
responses:
'200':
description: Label removed successfully.
'404':
description: Alarm or Label not found.
components:
schemas:
Alarm:
type: object
properties:
uuid:
type: string
format: uuid
alarm_labels:
type: array
items:
type: string
has_alarm:
type: boolean
needs_enrichment:
type: boolean
packet_data:
type: array
items:
type: string
priority:
type: integer
suppressed:
type: boolean
destinations:
type: array
items:
$ref: '#/components/schemas/AlarmDestination'
sources:
type: array
items:
$ref: '#/components/schemas/AlarmSource'
events:
type: array
items:
$ref: '#/components/schemas/AlarmEvent'
_links:
$ref: '#/components/schemas/AlarmLinks'
required:
- uuid
- has_alarm
- needs_enrichment
HalLink:
type: object
properties:
href:
type: string
format: uri
templated:
type: boolean
required:
- href
AlarmSource:
type: object
properties:
address:
type: string
hostname:
type: string
fqdn:
type: string
asset_id:
type: string
organisation:
type: string
country:
type: string
canonical:
type: string
name:
type: string
event_count:
type: integer
_links:
$ref: '#/components/schemas/AlarmSouceLinks'
required:
- event_count
AlarmSouceLinks:
type: object
properties:
self:
$ref: '#/components/schemas/HalLink'
AlarmDestinationLinks:
type: object
properties:
self:
$ref: '#/components/schemas/HalLink'
EventLinks:
type: object
properties:
self:
$ref: '#/components/schemas/HalLink'
EmbeddedAlarms:
type: object
properties:
alarms:
type: array
items:
$ref: '#/components/schemas/Alarm'
required:
- alarms
AlarmLinks:
type: object
properties:
self:
$ref: '#/components/schemas/HalLink'
AlarmEvent:
type: object
properties:
uuid:
type: string
format: uuid
has_alarm:
type: boolean
needs_enrichment:
type: boolean
priority:
type: integer
suppressed:
type: boolean
source_address:
type: string
source_asset_id:
type: string
source_canonical:
type: string
source_country:
type: string
source_fqdn:
type: string
source_hostname:
type: string
source_name:
type: string
source_organisation:
type: string
destination_address:
type: string
destination_asset_id:
type: string
destination_canonical:
type: string
destination_country:
type: string
destination_fqdn:
type: string
destination_hostname:
type: string
destination_name:
type: string
destination_organisation:
type: string
_links:
$ref: '#/components/schemas/EventLinks'
required:
- uuid
- has_alarm
- needs_enrichment
AlarmLabels:
type: object
properties:
alarm_labels:
type: array
items:
type: string
format: uuid
required:
- alarm_labels
AlarmDestination:
type: object
properties:
address:
type: string
hostname:
type: string
fqdn:
type: string
asset_id:
type: string
organisation:
type: string
country:
type: string
canonical:
type: string
name:
type: string
event_count:
type: integer
_links:
$ref: '#/components/schemas/AlarmDestinationLinks'
required:
- event_count
PageDetail:
type: object
properties:
size:
type: integer
totalElements:
type: integer
totalPages:
type: integer
number:
type: integer
required:
- size
- totalElements
- totalPages
- number
AlarmPage:
type: object
properties:
_links:
$ref: '#/components/schemas/PageLinks'
_embedded:
$ref: '#/components/schemas/EmbeddedAlarms'
page:
$ref: '#/components/schemas/PageDetail'
required:
- _links
- _embedded
- page
ErrorResponse:
type: object
properties:
result:
type: string
location:
type: string
error:
type: string
required:
- result
- location
PageLinks:
type: object
properties:
self:
$ref: '#/components/schemas/HalLink'
first:
$ref: '#/components/schemas/HalLink'
last:
$ref: '#/components/schemas/HalLink'
next:
$ref: '#/components/schemas/HalLink'
prev:
$ref: '#/components/schemas/HalLink'
securitySchemes:
basicAuth:
type: http
scheme: basic
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT