SlimeyAPI

Some fun APIs I made for fun
⚠️Beware these APIs are not for production use, they are not online 24/7!

Random Symbol API

An API for randomly generated symbols.

Endpoint:

GET https://slimeyapi.onrender.com/random

Example Response:

{
  "symbol": "]"
}

Supported Symbols:

abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ`~!@#$%^&*()_+-=[]\;',./{}|:"<>?

Weather API

An API for retrieving weather data.

Endpoint:

GET https://slimeyapi.onrender.com/weather?place={place}

Parameters:

place (required): The location for weather information
Example: place=New York

Example Response:

{
  "temperature": 18.5,
  "pressure_mb": 1013.25,
  "wind_degree": 180,
  "wind_speed": 5.2,
  "feels_like": 17.8,
  "last_updated": "2024-01-15T10:30:00Z"
}