Demo
Here’s the card rendering four sample listings: The listings are sample data, but every employer logo loads live fromimg.logo.dev. Select a listing to open a company card with the employer’s description and social links.
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.
Go further: build a company card
The domain that loads a logo can also pull a description and social profiles. Resolve the employer once by name, then show that brand data on a company card next to the listing. You can turn a company name into full brand data with one server route. It calls the Search API to resolve the name to a domain, then the Describe API to read the description, brand colors, and social profiles. Both use your secret key and the Describe API needs a paid plan, so this code runs on your server and the browser only ever receives the finished result./api/enrich-company?q=... and builds the logo URL from the returned domain with your publishable key.
On the card, render the returned description and the social links in socials. Only the networks present in the response render, so an employer with two profiles shows two icons and one with five shows five. Employers with no brand data on file still show their logo and name. The Describe API returns both fields, keyed off the domain the Search API resolved.
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.