Integration APIs

GET发行列表

Last updated February 26, 2026

获取活跃和即将到来的 Genesis 发行列表。返回带有元数据、代币信息和社交链接的列表。

Summary

使用状态和聚焦的可选过滤器列出所有 Genesis 发行。返回按最近活动排序的 LaunchData 对象数组。

  • 可通过 statusupcominglivegraduated)和/或 spotlighttruefalse)过滤
  • 结果按 lastActivityAt 降序排列
  • 每个条目包含发行详情、基础代币元数据和社交链接
  • 通过 network 查询参数支持主网(默认)和开发网

Quick Reference

项目
方法GET
路径/launches
认证无需
响应LaunchData[]
分页

端点

GET /launches

参数

参数类型必填描述
networkstring要查询的网络。默认值:solana-mainnet。使用 solana-devnet 查询开发网。
statusstring按状态筛选:upcominglivegraduated。默认返回全部。
spotlightstring按聚焦筛选:truefalse。默认返回全部。

请求示例

curl "https://api.metaplex.com/v1/launches?status=live"

响应

结果按 lastActivityAt 降序排列。

{
"data": [
{
"launch": {
"launchPage": "https://example.com/launch/mytoken",
"mechanic": "launchpoolV2",
"genesisAddress": "7nE9GvcwsqzYcPUYfm5gxzCKfmPqi68FM7gPaSfG6EQN",
"spotlight": false,
"startTime": "2026-01-15T14:00:00.000Z",
"endTime": "2026-01-15T18:00:00.000Z",
"status": "graduated",
"heroUrl": "launches/abc123/hero.webp",
"graduatedAt": "2026-01-15T18:05:00.000Z",
"lastActivityAt": "2026-01-15T17:45:00.000Z",
"type": "project"
},
"baseToken": {
"address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"name": "My Token",
"symbol": "MTK",
"image": "https://example.com/token-image.png",
"description": "A community-driven token for the example ecosystem."
},
"website": "https://example.com",
"socials": {
"x": "https://x.com/mytoken",
"telegram": "https://t.me/mytoken",
"discord": "https://discord.gg/mytoken"
}
}
]
}

响应类型

请参阅共享类型了解 LaunchBaseTokenSocials 的定义。

TypeScript

interface LaunchData {
launch: Launch;
baseToken: BaseToken;
website: string;
socials: Socials;
}
interface LaunchesResponse {
data: LaunchData[];
}

Rust

#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LaunchData {
pub launch: Launch,
pub base_token: BaseToken,
pub website: String,
pub socials: Socials,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct LaunchesResponse {
pub data: Vec<LaunchData>,
}

使用示例

TypeScript

const response = await fetch(
"https://api.metaplex.com/v1/launches?status=live"
);
const { data }: LaunchesResponse = await response.json();
console.log(`${data.length} launches`);
data.forEach((entry) => {
console.log(entry.baseToken.name, entry.launch.status);
});

Rust

let response: LaunchesResponse = reqwest::get(
"https://api.metaplex.com/v1/launches?status=live"
)
.await?
.json()
.await?;
println!("{} launches", response.data.len());

Notes

  • 结果不分页。端点在单个响应中返回所有匹配的发行。
  • status 过滤器接受 upcominglivegraduated。省略则返回所有状态。
  • mechanic 字段表示分配机制(例如 launchpoolV2presaleV2)。type 字段表示发行类别(projectmemecoincustom)。