Skip to main content

Get rate limit status

GET 

https://api.temp-mail.io/v1/rate_limit

Get rate limit status.

Responses

success response

Authorization: X-API-Key

name: X-API-Keytype: apiKeyin: header
import http.client

conn = http.client.HTTPSConnection("api.temp-mail.io")
payload = ''
headers = {
'Accept': 'application/json',
'X-API-Key': '<X-API-Key>'
}
conn.request("GET", "/v1/rate_limit", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://api.temp-mail.io
Auth
ResponseClear

Click the Send API Request button above and see the response here!