Findings
curl --request GET \
--url https://api.veridical.dev/api/v1/findings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.veridical.dev/api/v1/findings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.veridical.dev/api/v1/findings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}control
Findings
GET
/
api
/
v1
/
findings
Findings
curl --request GET \
--url https://api.veridical.dev/api/v1/findings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.veridical.dev/api/v1/findings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.veridical.dev/api/v1/findings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Query Parameters
Minimum string length:
1Minimum string length:
1Pattern:
^(posted|withheld|exec_refuted)$Pattern:
^(critical|high|medium|low|nit)$Pattern:
^(confirmed|refuted|cannot_run|ungrounded)$Required range:
1 <= x <= 500Response
Successful Response
The response is of type Response Findings Api V1 Findings Get · object.
Last modified on July 28, 2026
⌘I

