Get analysis tokens analysis
In order to receive the metrics of built-in stochastic analysis of the generated tokens that was formerly requested with an alphabet for a number of digits, the identifier of the tokens object MUST be sent as the first HTTP request path parameter together with analysis as the second HTTP request path parameter.
If the JSON response body contains the path data attributes level: metrics together with other attribute–value pairs, the built-in stochastic analysis of the generated tokens has been done. In this case, the tokens data, the tokens analysis, the the tokens score and the tokens delta of the production line are all linked in it and are available for download.
Request endpoint
GET SERVER:PORT/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/analysis
Response status
200
Request headers
Accept:application/vnd.api+json
Content-Type:application/vnd.api+json
Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS
Response headers
Transfer-Encoding:chunked
Connection:keep-alive
Date:Tue, 19 Mar 2024 12:57:48 GMT
Content-Type:application/json; charset=utf-8
Server:nginx/1.25.4
Request body
# intentionally blank
Response body
{
"links": {
"score": "/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/score",
"self": "/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/analysis",
"data": "/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/data",
"delta": "/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/delta"
},
"data": {
"attributes": {
"score": {
"minimum": 0,
"var": 5.039496e6,
"hurst": 0.498510777097885,
"median": 3888.0,
"mean": 3888.0,
"maximum": 7775,
"std": 2245.0
},
"filehashes": {
"score": "6ebb1cd28e70284f6b3ef730740d1cf88b87210f1d321c4a172ab4e44872dc70",
"data": "1603dbf327d04b23234404e8d199d3bf5aa42174f91ae4c60cc3f42043a8fca4",
"delta": "c86a3aedff531f0fc17f63034a5414f2b5e0fd3fd75d43643700e9c03660b55d"
},
"filesizes": {
"score": 37769,
"data": 124415,
"delta": 40658
},
"data": {
"minimum": "⚀⚀⚀⚀⚀",
"checksum": "0000000000000000000000000000000000000000000000000000000000000000000000",
"parity": 0,
"size": "7776",
"digits": 5,
"alphabet": "DICE",
"maximum": "⚅⚅⚅⚅⚅"
},
"timestamps": {
"ended": "2024-03-19T12:57:47.551",
"started": "2024-03-19T12:57:47.426",
"requested": "2024-03-19T12:57:47.258"
},
"level": "metrics",
"delta": {
"minimum": -7712,
"var": 1.0134723e7,
"hurst": 0.2892305617126306,
"median": -16.0,
"mean": 0.0,
"maximum": 7637,
"std": 3184.0
}
},
"id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"type": "analysis"
}
}
HTTPie example
$ http get SERVER:PORT/api/tokens/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/analysis Accept:application/vnd.api+json Content-Type:application/vnd.api+json Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS