uDegen Verified Tokens API
The Verified Tokens API provides a complete directory of projects that have passed the uDegen organic review process. This endpoint is designed for developers who need accurate project metadata, branding, and social links to build integrated directories or portfolio tools.
GET /api/coins
This public, read-only endpoint returns all projects currently marked as isVerifiedProject === true. It excludes all unreviewed or unverified assets to ensure data quality.
Request Details
Method:
GETAuthentication: None.
Query Parameters: None.
Caching: Results are cached in Redis for 1 hour (
TTL: 3600s).
Example Request
Bashcurl https://udegen.io/api/coinsResponse Schema
200 OK
Returns an array of verified project objects.
Data Details
logo: Returns astringURL ornullif no branding is available.urls: This object is omitted if no social links exist. If present, it contains only valid, non-empty URLs.Supported URL Keys:
website,telegram,twitter,discord,facebook,instagram,reddit,tiktok,github.
Use Cases
Project Directories: Fetch the dataset to render a browsable catalog of uDegen-verified assets with full branding and social links.
Instant Search: Load the dataset client-side to enable per-keystroke filtering and autocomplete without repeated API latency.
Portfolio Enrichment: Match user wallet addresses against our list to display rich metadata (logos, names) for verified holdings.
Community Bots: Integration for Telegram/Discord bots to display social links for verified projects upon user command.
Example Integration (TypeScript)
Technical Implementation Notes
Clean URL Data: Our backend uses a Zod transform to strip out null or empty URL fields. If a key like
twitterexists in the response, you are guaranteed a valid URL string.Cache Strategy: The system uses the Redis key
coins:listed. The first request after the 1-hour TTL triggers a database repopulation.Payload Considerations: Currently, this endpoint returns the entire verified dataset. Future versions may include pagination as the list of uDegen-verified projects grows.
Last updated