v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBSecurity Monitoring
List security findings
Get a list of security findings that match a search query. See the schema for security findings.
Query Syntax
This endpoint uses the logs query syntax. Findings attributes (living in the attributes.attributes. namespace) are prefixed by @ when queried. Tags are queried without a prefix.
Example: @severity:(critical OR high) @status:open team:platform
get/api/v2/security/findings
Query parameters
filter[query]string
The search query following log search syntax.
page[cursor]string
Get the next page of results with a cursor provided in the previous query.
page[limit]integer
The maximum number of findings in the response.
sort'@detection_changed_at' | '-@detection_changed_at'
The sort parameters when querying security findings.
Sorts by @detection_changed_at.
Response
OK
Example response
{
"data": [
{
"attributes": {
"attributes": {
"severity": "high",
"status": "open"
},
"tags": [
"team:platform",
"env:prod"
],
"timestamp": 1765901760
},
"id": "ZGVmLTAwcC1pZXJ-aS0wZjhjNjMyZDNmMzRlZTgzNw==",
"type": "finding"
}
],
"links": {
"next": "https://app.datadoghq.com/api/v2/security/findings?page[cursor]=eyJhZnRlciI6IkF3QUFBWnPcm1pd0FBQUJbVlBQUKBa1pqRTVdZUzSTBNemN0YWiIsLTE3Mjk0MzYwMjFdfQ==&page[limit]=25"
},
"meta": {
"elapsed": 548,
"page": {
"after": "eyJhZnRlciI6IkFRQUFBWWJiaEJXQS1OY1dqUUFBQUFCQldXSmlhRUpYUVVGQlJFSktkbTlDTUdaWFRVbDNRVUUiLCJ2YWx1ZXMiOlsiY3JpdGljYWwiXX0="
},
"request_id": "pddv1ChZwVlMxMUdYRFRMQ1lyb3B4MGNYbFlnIi0KHQu35LDbucx",
"status": "done"
}
}