info

About LuluAPI

LuluAPI.com is a both a dev resource and a repository of dog photos.

Dev Tools

To speed up prototyping websites that use APIs, consume these endpoints as placeholders in your code.

Dog Photos

To consume these photos in any other app, consume one of these endpoints in your code or use a specific fileURL.

Who am I / What is this

This site is made by Kara Myren, a software developer and Lulu's dog mom.

The code stack consists of Svelte, a python API using falcon, and a mongo database. It is self hosted on services running nginx.

Code Snippets

Example of posting a photo HTML

<img src="https://luluapi.com/f/stickers/20250819163946hvski.png" alt="">

Example of calling /stickers in Svelte

export async function getData(category) {
  const res = await fetch(https://luluapi.com/d/stickers/);
  let data = await res.json();
  return data;
}

© 2025 Kara Myren