Overview

This Person Does Not Exist serves AI-generated photorealistic face images of people who do not actually exist. Every page refresh returns a new unique face with no authentication required. It is ideal for placeholder profile photos in mockups and demos.

Beginner Tip

The site returns a new random image on every request — there is no ID or seed parameter, so you cannot request the same image twice. Save the image locally if you need to reuse it.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

randomly generated data
customizable output format
This Person Does not Exist data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "status": "success",
  "data": {
    "result": "Data from This Person Does not Exist",
    "description": "Generates real-life faces of people who do not exist",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

(binary image) Response is a raw JPEG image — no JSON; reference the URL as an img src or download with curl -L

Implementation Example

Request skeleton. The URL below is this API's documentation page, not a live endpoint — swap in the path you need from the provider's docs before running it.

Request
const url = "https://thispersondoesnotexist.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

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

Cannot get a specific face again No seed or ID parameter exists — every request is random
Download and save the image file locally when you find one you want to reuse
CORS error in browser fetch The endpoint does not expose CORS headers for JS fetch
Use the URL directly in an img tag rather than fetching it with JavaScript
Slow load time Images are high-resolution (1024x1024) by default
Resize the image client-side with CSS or an image processing library after download

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Test Data
Difficulty Beginner
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →