The platform API allows you to read and write data to the Pi Servers related with your app deployed on the Pi App Platform, and your app's users.
Overview
Base path:
The latest version of the Platform API is available at api.minepi.com/v2.
Note about API versioning:
The platform API is currently in v2.
As much as possible, we will not make any breaking changes to a version of an API, and only release breaking changes as
new major versions. However, we might make breaking changes to an existing version without notice, if those are
necessary (e.g security or privacy fixes).
Authorization
The Platform API supports two different authorization mechanisms.
Access token authorization
Some API calls require that you provide a user's access token to access the resource. They are generally related with a user's data (e.g: /me). Those endpoints can be accessed using the following Authorization header:
Authorization: Bearer <user access token>
Those endpoints can be indifferently accessed from your backend / server app, or from your frontend / client app.
Server API Key authorization
For various reasons, some API calls must be made from your backend / server app. Those endpoints can be accessed using the following Authorization header:
Authorization: Key <your Server API Key>
Warning: Server API keys are for servers only
Your Server API Key must be kept on your server, and must not be sent to clients (do not use it in your
client javascript code).
In the future, your server API key might enable sensitive operations on your app itself that your users should
not be allowed to perform. Letting users access your server API key is a serious security breach.
API Reference
Authentication
Access a user's resource:
Retrieve the user's information, including user information limited to what the user has consented to share with your app.
Verify the data obtained with the frontend SDK (a malicious user could tamper with the requests and send you wrong data) by sending the user’s access token to your backend and using this API endpoint to verify the token validity and the user’s identity.
Access tokens are long, random strings, and the request will fail (401 HTTP error code) if the token has been tampered with (a tampered token would
not belong to any real user).
Payments
There are two different payment types.
U2A (User-To-App)
A2U (App-To-User)
Create a payment (U2A):
If a payment type is U2A, use createPayment method of the client-side Javascript SDK to create a payment. You can refer to Payments section for more details.
Server-side completion: mark a payment as completed by proving to the Pi Servers that your app has obtained the payment's txid, enabling the user to close the payment flow.
{
uid: string, // An app-specific user identifier
credentials: {
scopes: Array<Scope>, // a list of granted scopes
valid_until: {
timestamp: number,
iso8601: string
}
},
username?: string, // The user's Pi username. Requires the `username` scope.
}
PaymentDTO
{
// Payment data:
identifier: string, // payment identifier
user_uid: string, // user's app-specific ID
amount: number, // payment amount
memo: string, // a string provided by the developer, shown to the user
metadata: Object, // an object provided by the developer for their own usage
from_address: string, // sender address of the blockchain transaction
to_address: string, // recipient address of the blockchain transaction
direction: Direction, // direction of the payment
created_at: string, // the payment's creation timestamp
network: AppNetwork, // a network of the payment
// Status flags representing the current state of this payment
status: {
developer_approved: boolean, // Server-Side Approval
transaction_verified: boolean, // blockchain transaction verified
developer_completed: boolean, // Server-Side Completion
cancelled: boolean, // cancelled by the developer or by Pi Network
user_cancelled: boolean, // cancelled by the user
},
// Blockchain transaction data:
transaction: null | { // This is null if no transaction has been made yet
txid: string, // id of the blockchain transaction
verified: boolean, // true if the transaction matches the payment, false otherwise
_link: string, // a link to the operation on the Blockchain API
},
};
RewardedAdStatusDTO
{
"identifier": string; // the adId token returned from the Pi SDK displayAd("rewarded") method
"mediator_ack_status": "granted" | "revoked" | "failed" | null;
"mediator_granted_at": string | null; // ISO 8601 date string
"mediator_revoked_at": string | null; // ISO 8601 date string
}
Platform API
The platform API allows you to read and write data to the Pi Servers related with your app deployed on the Pi App Platform, and your app's users.
Overview
Base path:
The latest version of the Platform API is available at
api.minepi.com/v2
.Authorization
The Platform API supports two different authorization mechanisms.
Access token authorization
Some API calls require that you provide a user's access token to access the resource. They are generally related with a user's data (e.g:
/me
). Those endpoints can be accessed using the following Authorization header:Those endpoints can be indifferently accessed from your backend / server app, or from your frontend / client app.
Server API Key authorization
For various reasons, some API calls must be made from your backend / server app. Those endpoints can be accessed using the following Authorization header:
API Reference
Authentication
Access a user's resource:
Retrieve the user's information, including user information limited to what the user has consented to share with your app.
Verify the data obtained with the frontend SDK (a malicious user could tamper with the requests and send you wrong data) by sending the user’s access token to your backend and using this API endpoint to verify the token validity and the user’s identity.
Access tokens are long, random strings, and the request will fail (401 HTTP error code) if the token has been tampered with (a tampered token would not belong to any real user).
Payments
There are two different payment types.
Create a payment (U2A):
If a payment type is U2A, use
createPayment
method of the client-side Javascript SDK to create a payment. You can refer to Payments section for more details.Create a payment (A2U):
Example request body:
Get a payment:
Get information about a payment.
Approve a payment:
Server-side approval: mark a payment as approved, enabling the user to submit the transaction to the blockchain.
Complete a payment:
Server-side completion: mark a payment as completed by proving to the Pi Servers that your app has obtained the payment's txid, enabling the user to close the payment flow.
Example request body:
Cancel a payment:
Mark the payment as cancelled.
Get incomplete server payments:
Returns the list of server payments (i.e A2U payments) which are in EITHER one of the two states below:
Ads
Verify a rewarded ad status
Verify status of a rewarded ad by
adId
returned by client Pi SDK methoddisplayAd('rewarded')
Resource types
UserDTO
PaymentDTO
RewardedAdStatusDTO