get_my_launches

Status, plan, requested week, upvotes and impressions for every launch on your account.

Connection required

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
slugstring

Product slug.

namestring

Product name.

statusstring

Where it is in the pipeline, for example draft, pending or live.

planstring

The plan chosen at checkout, when one has been chosen.

requestedWeekstring

The launch week you asked for.

upvotesnumber

Total upvotes.

impressionsnumber

How many times the listing has been shown.

dashboardUrlstring

Direct 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.

Reading a launch does not change it. Nothing in this tool can publish, reschedule or cancel anything.

REST equivalent

GET /api/v1/me/launches/, documented on Overview.

Was this page helpful?