General Docs

General information for other APIs.

Authentication

To authenticate with all SSVC APIs you need the header token that shows you have access to the API.

To validate an authentication token you can make a GET request to https://funnythin.org/api/validate

var response = await fetch('https://funnythin.org/api/validate', {
  method: 'GET',
  headers: {
    'token': 'evil',
  }
});
var text = await response.text();
console.log(text);

Rate Limits

All SSVC APIs share a general rate limit of 10 requests every 30 seconds. The rate limit is per token and not per IP.

If you need an increased rate limit please reach out to me on discord.

SSVC Docs