Skip to main content

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.

Returns all available profile image URLs from Firebase Storage. Images are discovered dynamically from the assets/profiles/ prefix in the storage bucket. Each item is a public download URL that can be used directly as a profile picture. This endpoint is public and does not require authentication.

Returns

ProfileImagesResponse — Profile images retrieved successfully
{
  "images": ["string"]
}

Example

import { DiscovrClient } from "discovr";
import type { ProfileImagesResponse } from "discovr";

const discovr = new DiscovrClient("your-client-id", {
  basePath: "https://api.discovr.media",
});

// After sign-in and profile selection …
const response: ProfileImagesResponse = await discovr.getProfileImages();
console.log(response);