Get mint requests
Get mint requests for an organization using the Phosphor API.
Get all mint requests
Issue a GET request to the mint-requests endpoint to retrieve all mint requests for the organization.
GET https://admin-api.phosphor.xyz/v1/mint-requests
This paginated endpoint returns results up to a certain limit.
- Specify a 
cursorfrom a previous response to return the next batch of results from the offset. - Specify an 
order_directioninASCorDESCto sort results in an ascending or descending order. - Additional query params can be specified to further filter the results, including 
collection_idanditem_id. 
GET https://admin-api.phosphor.xyz/v1/mint-requests?limit=1
Example response (abbreviated)
{
  "cursor": "ZHRfMTY1NTkwNjI5NS44NTg0NTc.",
  "has_more": false,
  "results": [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "item_id": "3fa85f64-5717-4562-b3fc-2c963f66afa5",
      "quantity": 1,
      "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa9"
    }
  ],
  "total_results": 1
}
cursorindicates an offset from which the next batch of results begins.has_morereturnstrueif there are more results than already displayed.resultsreturns an array of mint requests from the search.total_resultsreturns the total number of results from the response.
Get a specific mint request
Issue a GET request to the mint-requests endpoint with a transaction ID to get a specific mint request.
GET https://admin-api.phosphor.xyz/v1/mint-requests/{transaction_id}
Example response
{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "item_id": "3fa85f64-5717-4562-b3fc-2c963f66afa8",
  "quantity": 1,
  "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa5"
}