List JavaScript analyses
curl --request GET \
--url https://aquila.attaxr.com/api/js-analysis \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/js-analysis', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/js-analysis"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}JS Analysis
List JavaScript analyses
Analyses with their monitoring file’s URL. Bodies stay out of the list.
GET
/
api
/
js-analysis
List JavaScript analyses
curl --request GET \
--url https://aquila.attaxr.com/api/js-analysis \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/js-analysis', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/js-analysis"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}Authorizations
apiKeyCookieapiKeyHeaderbearerAuth
Browser session cookie set by Better Auth sign-in.
Query Parameters
Page number, 1-based.
Items per page (1-100, default 20).
Sort direction (default desc).
Available options:
asc, desc Filter by analysis status.
Response
Paginated analyses.

