Integration APIs

GETGet Spotlight

Last updated February 26, 2026

プラットフォームが厳選した注目スポットライトローンチを取得します。アプリケーションで選択されたローンチをハイライト表示するために使用します。

Summary

プラットフォームがスポットライトとして厳選したローンチを取得します。/launches エンドポイントに spotlight=true を事前適用した便利なフィルタです。

  • spotlighttrueLaunchData オブジェクトの配列を返します
  • statusupcominglivegraduated)でさらにフィルタ可能
  • 各エントリにはローンチ詳細、ベーストークンメタデータ、ソーシャルリンクが含まれます
  • メインネット(デフォルト)およびデブネットを network クエリパラメータでサポート

Quick Reference

項目
メソッドGET
パス/launches?spotlight=true
認証不要
レスポンスLaunchData[]
ページネーションなし

エンドポイント

GET /launches?spotlight=true

パラメータ

パラメータ必須説明
networkstringいいえクエリするネットワーク。デフォルト:solana-mainnet。devnet の場合は solana-devnet を使用。
statusstringいいえステータスでフィルタ: 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"
}
}
]
}

レスポンス型

共有型LaunchBaseTokenSocials の定義を参照してください。

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 フィールドは割り当てメカニズム(例:launchpoolV2presaleV2)を示します。type フィールドはローンチカテゴリ(projectmemecoincustom)を示します。