Placeholder Images API

Generate placeholder images with just a URL.Fast. Dynamic. Simple.

Example placeholder

Image Generator

px
px
https://placeholder.vfox.pl/api/img/600x400
Placeholder 600x400
600 × 400

How to Use

1

Choose Dimensions

Select your desired width and height for the placeholder image.

2

Select Format

Choose between SVG (default), PNG, or JPEG formats based on your needs.

3

Use the URL

Copy the generated URL and use it in your HTML or CSS code.

Implementation Examples
<!-- SVG (default) -->
  <img 
    src="https://placeholder.vfox.pl/api/img/600x400" 
    alt="Placeholder image" 
    width="600" 
    height="400"
  />
  
  <!-- PNG format -->
  <img 
    src="https://placeholder.vfox.pl/api/img/600x400/png" 
    alt="Placeholder image" 
    width="600" 
    height="400"
  />
  
  <!-- JPEG format -->
  <img 
    src="https://placeholder.vfox.pl/api/img/600x400/jpeg" 
    alt="Placeholder image" 
    width="600" 
    height="400"
  />

API Reference

Basic Endpoint

https://placeholder.vfox.pl/api/img/:size

Where :size is in the format widthxheight (e.g., 600x400)

Format Endpoint

https://placeholder.vfox.pl/api/img/:size/:format

Where :format is one of: svg, png, jpeg

Examples

  • https://placeholder.vfox.pl/api/img/600x400Basic SVG placeholder (600×400)
  • https://placeholder.vfox.pl/api/img/800x600/pngPNG placeholder (800×600)
  • https://placeholder.vfox.pl/api/img/1200x800/jpegJPEG placeholder (1200×800)