Reports

Operations done on Reports

Base URL

https://app.pentest-tools.com/api/v2

Authorization

Use the "API key" from the profile page as the token


Method
get
Path
/reports

Responses

500Internal server error

Request

GET
/reports
curl --request GET \
  --url https://app.pentest-tools.com/api/v2/reports \
  --header 'accept: application/json' \
  --header 'authorization: Bearer {token}'

Response

[
  {
    "id": 1,
    "download_name": "report.pdf",
    "status": "waiting",
    "format": "pdf",
    "generation_date": "",
    "expiration_date": ""
  }
]

OK


Method
get
Path
/reports/{id}

Path parameters

Property
id
Type
integer
required
Yes

id of report

Responses

500Internal server error

Request

GET
/reports/{id}
curl --request GET \
  --url https://app.pentest-tools.com/api/v2/reports/{id} \
  --header 'accept: application/json' \
  --header 'authorization: Bearer {token}'

Response

{
  "id": 1,
  "download_name": "report.pdf",
  "status": "waiting",
  "format": "pdf",
  "generation_date": "",
  "expiration_date": ""
}

OK


Method
delete
Path
/reports/{id}

Path parameters

Property
id
Type
integer
required
Yes

id of report

Responses

204Deleted successfully
500Internal server error

Request

DELETE
/reports/{id}
curl --request DELETE \
  --url https://app.pentest-tools.com/api/v2/reports/{id} \
  --header 'accept: application/json' \
  --header 'authorization: Bearer {token}'

Response

No Body

Deleted successfully


Method
get
Path
/reports/{id}/download

Path parameters

Property
id
Type
integer
required
Yes

id of report

Responses

500Internal server error

Request

GET
/reports/{id}/download
curl --request GET \
  --url https://app.pentest-tools.com/api/v2/reports/{id}/download \
  --header 'accept: application/json' \
  --header 'authorization: Bearer {token}'

Response

OK