Demo
Here’s the card rendering four sample listings: The listings are sample data, but every employer logo loads live fromimg.logo.dev.
Build it with AI
Want employer logos on your listing cards? This prompt gives your AI coding tool everything it needs to build it in your framework.
Code
This example is in React, but you can get the same result in any frontend framework: the card is one image URL next to fields already on your listing. PasteJobCard.tsx, then render it as the Usage tab shows. The logo slot is a fixed 40px square, so cards keep their height while images load.
Your publishable key is built for client-side code, so
you can ship it in the browser as-is.
How it works
- Every employer logo is one image URL.
img.logo.dev/:domainturns the domain on the listing into a logo, and query parameters set the size and format. See all image parameters. - A feed of ten thousand employers never breaks. When Logo.dev doesn’t have a logo, it returns a generated monogram instead of a broken image, so there are no per-company checks. See fallback images.
- The CDN absorbs the volume. Logos are cached and served like any other image, so rendering the same card thousands of times costs normal image requests.
- The card is plain markup. Logos load as cards scroll into view and the image slot keeps a fixed size, so the feed never jumps. The component above carries the details.
Make it your own
- Reuse the card for any company list. Swap the job fields for a one-line description and the same card serves VC portfolios and directories.
- Resolve employers without domains. Let posters pick their company with the autocomplete, or look up logos by name.
- Restyle the logos. Add
&greyscale=truefor a uniform feed or&theme=darkfor dark backgrounds. See all image parameters.
Next steps
Logo API
Browse every image URL parameter: size, format, theme, greyscale, and fallbacks.
Integration logos
Build the tile-based version for app marketplaces.