service: Rand.sh API
description: A simple API that returns random data
endpoints:
  /animals:
    method: GET
    description: Returns a random animal from our collection
    response_format:
      data: string - the randomly selected animal name
      message: string - descriptive message about the operation
      success: boolean - indicates if the request was successful
    example_response:
      data: koala
      message: you successfully fetched an animal
      success: true
  /numbers:
    method: GET
    description: Returns a random round number from 0 to 100 (inclusive)
    response_format:
      data: number - the randomly generated number between 0 and 100
      message: string - descriptive message about the operation
      success: boolean - indicates if the request was successful
    example_response:
      data: 42
      message: you successfully fetched a random number
      success: true
