get_my_launches
Status, plan, requested week, upvotes and impressions for every launch on your account.
Reports your own launches, including drafts. This is how an agent answers "did my launch go live" and "how is it doing" without opening a browser.
Parameters
None.
Response
launchesobject[]One entry per launch on your account.
+Fields on each launch
slugstringProduct slug.
namestringProduct name.
statusstringWhere it is in the pipeline, for example draft, pending or live.
planstringThe plan chosen at checkout, when one has been chosen.
requestedWeekstringThe launch week you asked for.
upvotesnumberTotal upvotes.
impressionsnumberHow many times the listing has been shown.
dashboardUrlstringDirect link to the product dashboard.
Example
What is the status of my Nick Launches submissions?{
"launches": [
{
"slug": "example",
"name": "Example",
"status": "draft",
"plan": null,
"requestedWeek": null,
"upvotes": 0,
"impressions": 0,
"dashboardUrl": "https://nicklaunches.com/profile/products/example/"
}
]
}A launch stuck at draft is waiting on you, not on us: open the dashboard link and finish at
/submit/plan/.
Notes
This only ever returns launches owned by the connected account. There is no parameter for looking at somebody
else's, and asking for one answers FORBIDDEN.
REST equivalent
GET /api/v1/me/launches/, documented on Overview.