Get latest benchmark
GET
/api/v1/benchmarks/latest
const url = 'https://dashboard.justcrawl.io/api/v1/benchmarks/latest';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.justcrawl.io/api/v1/benchmarks/latest \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Latest benchmark for the organization
Media type application/json
object
id
string format: uuid
status
string
urls
Array<string>
providerIds
Array<string>
totalProbes
integer
completedProbes
integer
failedProbes
integer
skippedProviders
Array<string>
error
string
createdAt
string format: date-time
Example
{ "status": "pending"}No benchmarks found