Integration APIs
GETGet Spotlight
Last updated February 26, 2026
获取平台策划的精选聚焦发行。使用此端点在您的应用中展示精选发行。
Summary
获取平台策划的聚焦精选发行。这是 /launches 端点预设 spotlight=true 的便捷过滤器。
- 返回
spotlight为true的LaunchData对象数组 - 可通过
status(upcoming、live、graduated)进一步过滤 - 每个条目包含发行详情、基础代币元数据和社交链接
- 通过
network查询参数支持主网(默认)和开发网
Quick Reference
| 项目 | 值 |
|---|---|
| 方法 | GET |
| 路径 | /launches?spotlight=true |
| 认证 | 无需 |
| 响应 | LaunchData[] |
| 分页 | 无 |
端点
GET /launches?spotlight=true
参数
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
network | string | 否 | 要查询的网络。默认值:solana-mainnet。使用 solana-devnet 查询开发网。 |
status | string | 否 | 按状态筛选:upcoming、live、graduated。默认返回全部。 |
请求示例
curl "https://api.metaplex.com/v1/launches?spotlight=true"
响应
{
"data": [
{
"launch": {
"launchPage": "https://example.com/launch/mytoken",
"mechanic": "launchpoolV2",
"genesisAddress": "7nE9GvcwsqzYcPUYfm5gxzCKfmPqi68FM7gPaSfG6EQN",
"spotlight": true,
"startTime": "2026-01-15T14:00:00.000Z",
"endTime": "2026-01-15T18:00:00.000Z",
"status": "live",
"heroUrl": "launches/abc123/hero.webp",
"graduatedAt": null,
"lastActivityAt": "2026-01-15T16:30: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"
}
}
]
}
响应类型
请参阅共享类型了解 Launch、BaseToken 和 Socials 的定义。
TypeScript
interface LaunchData {
launch: Launch;
baseToken: BaseToken;
website: string;
socials: Socials;
}
interface SpotlightResponse {
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 SpotlightResponse {
pub data: Vec<LaunchData>,
}
使用示例
TypeScript
const response = await fetch(
"https://api.metaplex.com/v1/launches?spotlight=true"
);
const { data }: SpotlightResponse = await response.json();
data.forEach((entry) => {
console.log(entry.baseToken.name, entry.launch.type);
});
Rust
let response: SpotlightResponse = reqwest::get(
"https://api.metaplex.com/v1/launches?spotlight=true"
)
.await?
.json()
.await?;
for entry in &response.data {
println!("{}", entry.base_token.name);
}
Notes
- 聚焦状态由平台管理,不能通过 API 设置。
- 此端点使用
spotlight=true作为查询参数的相同/launches路由 — 它不是一个单独的端点。 mechanic字段表示分配机制(例如launchpoolV2、presaleV2)。type字段表示发行类别(project、memecoin或custom)。
