LL
LaunchLens

API Documentation

Public API endpoints for accessing LaunchLens listing data. All responses are JSON.

Base URL: https://launchlens.online

GET/api/listings

List all tokens

Parameters

statusFilter: upcoming, live, ended
boostedSet to 1 for boosted only
qSearch by name, ticker, or CA
sortnewest, launch_date, views, dev_launches
from / toDate range filter (YYYY-MM-DD)
limit / offsetPagination (default 20)
GET/api/listings/[id]

Get single listing by ID

GET/api/search?q=term

Quick search (name, ticker, CA)

Parameters

qSearch term (min 2 chars)
GET/api/dev-launches?listing_id=X

Get dev launch history for a listing

Parameters

listing_idListing ID
GET/api/copycats?name=X&ticker=Y

Check for duplicate/copycat listings

Parameters

nameToken name to check
tickerTicker to check
GET/api/pricing

Current boost pricing in SOL

POST/api/listings

Submit a new listing

Parameters

name *Token name
ticker *Ticker symbol
descriptionProject description
contract_addressCA (makes it Live)
launch_dateISO date string
website / twitter / telegram / discordSocial links
logo_urlToken logo image URL

Embed Widget

Add your LaunchLens listing to your own website with a simple iframe.

Copy this code and paste it into your site:

<iframe
  src="https://launchlens.online/embed/YOUR_LISTING_ID"
  width="400"
  height="180"
  frameborder="0"
  style="border-radius: 12px; border: 1px solid #252533;"
></iframe>

Replace YOUR_LISTING_ID with your listing number (e.g. 42).

Rate Limits

Read endpoints60 req/min
Search30 req/min
Submit listing5 req/hour
Boost payment10 req/hour
Wallet scan3 req/hour

Rate limits are per IP. Returns 429 when exceeded.