Retrieve reports
- This endpoint allows you to retrieve reports. You can filter the reports by type, network, asset, and address. You can find the full list of parameters and other details in here (opens in a new tab).
const params = {
type: "address_validation",
network: "ETH",
asset:"ETH",
address:"0x00000000000000"
//... you can add more params for filtering or pagination to here according to the Swagger
};
axios.get('https://oxskyt.com.com/reports',{
headers:{
'X-API-KEY':'xxxxx'
},
params
})Retrieve a report by ID
idis the id property of the report you want to retrieve.- You can try and inspect other details here (opens in a new tab).
const params = {
type: "address_validation",
network: "ETH",
asset:"ETH",
address:"0x00000000000000"
//... you can add more params for filtering or pagination to here according to the Swagger
};
axios.get('https://oxskyt.com.com/reports/{id}',{
headers:{
'X-API-KEY':'xxxxx'
},
params
})