Placeholder Images API
Generate placeholder images with just a URL.Fast. Dynamic. Simple.
Image Generator
px
px
https://placeholder.vfox.pl/api/img/600x400
600 × 400
How to Use
Choose Dimensions
Select your desired width and height for the placeholder image.
Select Format
Choose between SVG (default), PNG, or JPEG formats based on your needs.
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/600x400
Basic SVG placeholder (600×400)https://placeholder.vfox.pl/api/img/800x600/png
PNG placeholder (800×600)https://placeholder.vfox.pl/api/img/1200x800/jpeg
JPEG placeholder (1200×800)