placeify.app

placeify.app is a tool for developers that allows generating placeholder images with fixed or gradient backgrounds. Ideal for avatars or covers.

How to Use

GET /api/placeholder

Available Parameters

  • width (number, optional): Image width. Default: 200.
  • height (number, optional): Image height. Default: width.
  • seed (string, optional): String to generate a repeatable background color.
  • gradient (boolean, optional): If true, generates a gradient background.
  • text (string, optional): Text to display on the image.
  • color (string, optional): Text color (HEX format, e.g., FFFFFF).
  • background (string, optional): Background color (HEX format, e.g., 00FF00).

Examples

Simple image:

/api/placeholder?width=300&text=Hello
Simple image

With gradient:

/api/placeholder?width=300&height=150&gradient=true&seed=my-seed
Image with gradient

Custom text color:

/api/placeholder?width=300&text=Custom&color=FF5733
Custom text image

Custom background color:

/api/placeholder?width=300&text=Custom&background=FF39A7
Custom text image