PlaceKeanu API

⭐ Beginner's Pick Photography / No Auth Required Beginner HTTPS
Free to Use Varies (check documentation)

Overview

PlaceKeanu is a fun, free placeholder image API that serves Keanu Reeves photos in any size you specify in the URL with no API key or sign-up needed. It is perfect for injecting some humor into your design mockups and prototypes during development. Just use the URL pattern in your img tags and placeholder images are ready instantly.

💡

Beginner Tip

Simply use https://placekeanu.com/{width}/{height} as the src of any img tag and you will get a Keanu Reeves photo at exactly that size. Add /y to the path (e.g., /200/300/y) to get young Keanu, or /g for grayscale.

Available Data

image URLs in multiple sizes
photographer credit
image dimensions
download link
color data
randomly generated data

Example Response

JSON Response
{
  "id": "Dwu85P9SOIk",
  "urls": {
    "full": "https://images.unsplash.com/photo-...",
    "regular": "https://images.unsplash.com/photo-...?w=1080",
    "thumb": "https://images.unsplash.com/photo-...?w=200"
  },
  "width": 4000,
  "height": 3000,
  "user": {
    "name": "John Doe",
    "username": "johndoe"
  }
}

Field Reference

(image binary) The response is a raw JPEG image at the requested dimensions; no JSON wrapper, use it directly as an img src.

Implementation Example

const url = "https://placekeanu.com/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

Image not displaying at correct size The browser or CSS is overriding the natural image dimensions.
The API returns the image at exactly the requested dimensions; if it looks wrong, check for CSS width, height, or max-width rules overriding the display size.
Broken image in production Placeholder services like PlaceKeanu are meant for development and may be blocked in some corporate or production environments.
Replace PlaceKeanu URLs with your own hosted images before deploying to production; placeholder APIs are not meant for live apps.
404 Not Found The URL path is malformed or missing the required width and height segments.
Use the exact pattern https://placekeanu.com/{width}/{height} with positive integer values for both dimensions.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 20/20
🔒 Security 15/15
🛠 Developer XP 15/20
✓ Reliability 7/15
Response Time 115ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Photography
Difficulty Beginner
Verified: 2026-04-04

Similar APIs

View All →