Skip to main content
GET
/
profile-images
Get available profile images
const options = {method: 'GET'};

fetch('https://api.discovr.media/profile-images', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "images": [
    "https://api.discovr.media/profile-images/profile-apricot.png",
    "https://api.discovr.media/profile-images/profile-cloud.png",
    "https://api.discovr.media/profile-images/profile-cyan.png"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.discovr.media/llms.txt

Use this file to discover all available pages before exploring further.

Response

Profile images retrieved successfully

images
string<uri>[]
required

Public download URLs for available profile images

Example:
[
"https://api.discovr.media/profile-images/profile-apricot.png",
"https://api.discovr.media/profile-images/profile-cloud.png",
"https://api.discovr.media/profile-images/profile-cyan.png"
]