Get the current delay
GET/v2/delay
Get the current delay
Request
Header Parameters
Custom User-Agent for your application, see user-agent.dev for implementation examples. Alternatively you can also use the 'MineSkin-User-Agent' header.
API key from account.mineskin.org
Responses
- 200
Delay Info
- application/json
- Schema
- Example (from schema)
Schema
next
object
required
Absolute timestamp (in milliseconds) after which the next request can be made
1726829503123
Relative delay (in milliseconds) after which the next request can be made
800
delay
object
required
Delay between requests (in milliseconds) - depends on the API key used for this request
1200
Delay between requests (in seconds) - depends on the API key used for this request
1.2
limit
object
Limit of requests in the current window (usually 1 minute). Same as the 'X-RateLimit-Limit' header
60
Remaining requests in the current window. Same as the 'X-RateLimit-Remaining' header
58
{
"next": {
"absolute": 1726829503123,
"relative": 800
},
"delay": {
"millis": 1200,
"seconds": 1.2
},
"limit": {
"limit": 60,
"remaining": 58
}
}