← Back to Dashboard

This Person Does not Exist

Test DataActiveUnknownAuth: NoneDoc: Unknown
Visit Website ↗

Description

Generates real-life faces of people who do not exist

✨ AI Summary

Generates realistic faces of people who do not exist.

Code Example

import requests

url = "https://thispersondoesnotexist.com/image"

try:
    response = requests.get(url, stream=True)
    response.raise_for_status() # Raise an exception for HTTP errors

    # Example: Save the image to a file
    with open("person.jpg", "wb") as f:
        for chunk in response.iter_content(chunk_size=8192):
            f.write(chunk)
    print("Image saved successfully as person.jpg")

except requests.exceptions.RequestException as e:
    print(f"An error occurred: {e}")

Live Health Metrics

Last 50 checks (10 min intervals)