{
  "name": "BRDN's API",
  "description": "Multi-purpose API hosted at api.iambrdn.com",
  "endpoints": [
    {
      "method": "GET",
      "path": "/api/dogs",
      "description": "List all dog images (JSON)"
    },
    {
      "method": "GET",
      "path": "/api/dogs/random",
      "description": "Get one random dog image URL (JSON)"
    },
    {
      "method": "GET",
      "path": "/api/dogs/random/image",
      "description": "Actually shows a random dog image in-browser"
    },
    {
      "method": "GET",
      "path": "/api/dogs/:index",
      "description": "Get a dog image URL by index (JSON)"
    },
    {
      "method": "GET",
      "path": "/api/dogs/:index/image",
      "description": "Actually shows the dog image at that index in-browser"
    }
  ]
}