Archived audits
GET https://evaluezvotreseo.com/api/archived-audits/
curl --request GET \
--url 'https://evaluezvotreseo.com/api/archived-audits/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://evaluezvotreseo.com/api/archived-audits/' \
--header 'Authorization: Bearer {api_key}' \
Parameters | Details | Description |
---|---|---|
page | Optional Integer | The page number that you want results from. Defaults to 1 . |
results_per_page | Optional Integer | How many results you want per page. Allowed values are: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Defaults to 25 . |
{
"data": [
{
"id": 1,
"audit_archive_id": 1,
"website_id": 1,
"domain_id": 0,
"user_id": 1,
"uploader_id": "f528764d624db129b32c21fbca0cb8d6",
"host": "example.com",
"url": "https://example.com",
"ttfb": 0.3,
"response_time": 500,
"average_download_speed": 200,
"page_size": 5000,
"is_https": true,
"is_ssl_valid": true,
"http_protocol": "2",
"title": "Example title",
"meta_description": "Example description.",
"meta_keywords": "example, keywords",
"data": {...},
"issues": {
"major": [],
"moderate": {
"meta_charset": [
"missing"
],
"is_http2": [
"invalid"
],
"external_links": [
"too_many"
]
},
"minor": {
"deprecated_html_tags": [
"existing"
],
"header_server": [
"existing"
],
"inline_css": [
"existing"
],
"unsafe_external_links": [
"existing"
],
"non_deferred_scripts": [
"existing"
]
},
"potential_major_issues": 11,
"potential_moderate_issues": 14,
"potential_minor_issues": 15,
"total_tests": 40,
"passed_tests": 32
},
"score": 90,
"total_issues": 10,
"major_issues": 4,
"moderate_issues": 1,
"minor_issues": 5,
"total_refreshes": 10,
"expiration_datetime": "2025-03-08 18:50:45",
"datetime": "2025-03-12 04:36:46"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://evaluezvotreseo.com/api/archived-audits?&page=1",
"last": "https://evaluezvotreseo.com/api/archived-audits?&page=1",
"next": null,
"prev": null,
"self": "https://evaluezvotreseo.com/api/archived-audits?&page=1"
}
}
GET https://evaluezvotreseo.com/api/archived-audits/{archived_audit_id}
curl --request GET \
--url 'https://evaluezvotreseo.com/api/archived-audits/{archived_audit_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://evaluezvotreseo.com/api/archived-audits/{archived_audit_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1
"audit_archive_id": 1,
"website_id": 1,
"domain_id": 0,
"user_id": 1,
"uploader_id": "f528764d624db129b32c21fbca0cb8d6",
"host": "example.com",
"url": "https://example.com",
"ttfb": 0.3,
"response_time": 500,
"average_download_speed": 200,
"page_size": 5000,
"is_https": true,
"is_ssl_valid": true,
"http_protocol": "2",
"title": "Example title",
"meta_description": "Example description.",
"meta_keywords": "example, keywords",
"data": {...},
"issues": {
"major": [],
"moderate": {
"meta_charset": [
"missing"
],
"is_http2": [
"invalid"
],
"external_links": [
"too_many"
]
},
"minor": {
"deprecated_html_tags": [
"existing"
],
"header_server": [
"existing"
],
"inline_css": [
"existing"
],
"unsafe_external_links": [
"existing"
],
"non_deferred_scripts": [
"existing"
]
},
"potential_major_issues": 11,
"potential_moderate_issues": 14,
"potential_minor_issues": 15,
"total_tests": 40,
"passed_tests": 32
},
"score": 90,
"total_issues": 10,
"major_issues": 4,
"moderate_issues": 1,
"minor_issues": 5,
"total_refreshes": 10,
"expiration_datetime": "2025-03-08 18:50:45",
"datetime": "2025-03-12 04:36:46"
}
}
DELETE https://evaluezvotreseo.com/api/archived-audits/{archived_audit_id}
curl --request DELETE \
--url 'https://evaluezvotreseo.com/api/archived-audits/{archived_audit_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://evaluezvotreseo.com/api/archived-audits/{archived_audit_id}' \
--header 'Authorization: Bearer {api_key}' \