Fetch a Project

Endpoint

GET /api/:partner/projects/:externalProjectId

When requesting this URL replace :partner with your specific partner tag, which you will receive when onboarded with Mintplex. This tag must match the one provided to you by Mintplex.

externalProjectId is the unique project in which you refer to the project in your system.

{
    headers: "Authorization <USER_ETH_ADDRESS_ALL_LOWERCASE>",
}

You will then be returned a response like

200 OK

{
    "status": true,
    "project": {
        ...all project information
    }
}

404 NOT FOUND

{
    "status": false,
    "message: "Project not found",
    "project": null,
}

400 BAD

{
    "status": false,
    "message": "invalid params",
    "project": null
}

Last updated