Comment on page
🛹
Getting Started
Learn how to setup your API to use PayPI
Interact with PayPI using our SDKs:
Get started creating an API or check out some of our example implementations:
To setup a PayPI team to become a partner, switch to that team and click "Sell on PayPI", this will allow you access to the API Manager via the marketplace icon in the main menu, where you can start creating and managing your APIs.

Create an API on the PayPI website and keep note of your API Secret (you'll use this to authenticate your API) and your Share URL (your users need this to subscribe to your API).
To accept payments you need to decide what to charge your users. Charges are created in the “charges” section of your API dashboard, they state what you are going to be charging your users for and how much.
We recommend the following when creating charges:
- Make it simple, keep the number of charges to a minimum.
- Write a detailed description so users know exactly what they’re being charged for.
- Use dynamic charges wherever your charge may change per request, like charging more per request
Install PayPI's library, where you plan to do your authentication.
Go
Node JS
Python
go get -u github.com/paypi/paypi-go
npm install paypi
yarn add paypi
pip install paypi
Go
Node JS
Python
import (
"http"
"github.com/paypi/paypi-go/paypi"
)
paypi.Key = "<API_SECRET_KEY>"
import PayPI from 'paypi'
const paypi = new PayPI("<Your API secret")
from paypi import PayPI
paypi = PayPI("<Your API Secret>")
To take payments, you must first check that the API token they have given you is valid.
You may retrieve the API token from your users in any way you see fit, although we recommend this is done in the Authentication header if HTTP is being used.
Go
Node JS
Python
user, err := paypi.Authenticate("<Subscriber secret>")
if err != nil {
http.Error(w, "User token is unauthorized", http.StatusUnauthorized)
return
}
const user = await paypi.authenticate("<Subscriber secret>")
# Async
user = await paypi.authenticate("<Users Subscription Secret>")
# Synchronously
user = paypi.authenticate_sync("Users Subscription Secret")
If this method returns without error you can continue processing the request. If it fails you should immediately return an unauthorised response from your API.
Go
Node JS
Python
user.MakeCharge
is used to charge users on the platform. When user.MakeCharge
is called the user is charged for their usage on your platform. This should be done at the end of your request, when you are sure that their request is going to be fulfilled successfully.Static charges need only provide the charge identifier
user, _ := paypi.Authenticate("<USER_TOKEN>")
charge, err := user.MakeCharge(paypi.MakeChargeInput{
ChargeIdentifier: "<CHARGE_IDENTIFIER>",
})
Dynamic Charges
If a charge is dynamic, you must provide the number of units used. This is usually representative of seconds of processing time, or MB of data processed. This unit is multiplied by the price set for the dynamic charge to calculate the total cost to the user.
user, _ := paypi.Authenticate("<USER_TOKEN>")
charge, err := user.MakeCharge(paypi.MakeChargeInput{
ChargeIdentifier: "<CHARGE_IDENTIFIER>",
UnitsUsed: 5,
})
user.makeCharge
is used to charge users on the platform. When user.makeCharge
is called the user is charged for their usage on your platform. This should be done at the end of your request, when you are sure that their request is going to be fulfilled successfully.Static charges need only provide the charge identifier
const user = await paypi.authenticate("<Subscriber secret>")
await user.makeCharge("<CHARGE_IDENTIFIER>")
Dynamic Charges
If a charge is dynamic, you must provide the number of units used. This is usually representative of seconds of processing time, or MB of data processed. This unit is multiplied by the price set for the dynamic charge to calculate the total cost to the user.
const user = await paypi.authenticate("<Subscriber secret>")
const unitsUsed = 4
await user.makeCharge("<CHARGE_IDENTIFIER>", unitsUsed)
user.make_charge
is used to charge users on the platform. When user.make_charge
is called the user is charged for their usage on your platform. This should be done at the end of your request, when you are sure that their request is going to be fulfilled successfully.Static charges need only provide the charge identifier
# Async
user = await paypi.authenticate("<Subscription Secret>")
await user.make_charge("<CHARGE_IDENTIFIER>")
# Sync
user = paypi.authenticate_sync("<Subscription Secret>")
user.make_charge_sync("<CHARGE_IDENTIFIER>")
Dynamic Charges
If a charge is dynamic, you must provide the number of units used. This is usually representative of seconds of processing time, or MB of data processed. This unit is multiplied by the price set for the dynamic charge to calculate the total cost to the user.
units_used = 4
# Async
user = await paypi.authenticate("<Subscription Secret>")
await user.make_charge("<CHARGE_IDENTIFIER>", units_used)
# Sync
user = paypi.authenticate_sync("<Subscription Secret>")
user.make_charge_sync("<CHARGE_IDENTIFIER>", units_used)
Go
Node JS
Python
package main
import (
"http"
"github.com/paypi/paypi-go/paypi"
)
// Set the API secret key on initialising your application
paypi.Key = "<API_SECRET_KEY>"
func handleRequest(w http.ResponseWriter, r *http.Request) {
// Check if a user's token is valid, this token usually comes from the
// Authorization header, but can be given in any way you choose.
user, err := paypi.Authenticate(r.Header.Get("Authorization"))
if err != nil {
http.Error(w, "User token is unauthorized", http.StatusUnauthorized)
return
}
// Do some processing, fetch the response etc...
// If request was successful, make a static charge
charge, err := user.MakeCharge(paypi.MakeChargeInput{
ChargeIdentifier: "<STATIC_CHARGE_IDENTIFIER>",
})
// Make a dynamic charge based on processing
charge, err = user.MakeCharge(paypi.MakeChargeInput{
ChargeIdentifier: "<DYNAMIC_CHARGE_IDENTIFIER>",
UnitsUsed: 2.34,
})
fmt.Fprintf(w, "Request Successful")
}
import PayPI from 'paypi';
import express from 'express'
const app = express()
const port = 3000
const paypi = new PayPI("<YOUR API SECRET>")
app.get('/', async (req, res) => {
const subscriberSecret = req.get("Authentication")
const user = await paypi.authenticate(subscriberSecret)
// Do some processing, fetch response data, etc
// Once request is going to go through, charge the user using a ChargeID.
await user.makeCharge("cid-R4tfSt4")
await user.makeCharge("cid-U7dhaf3", 34) // Dynamic charges need to be given unitsUsed.
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
from paypi import PayPI
paypi = PayPI("<Your API Secret>")
@app.route("/")
async def hello():
user = await paypi.authenticate("<Users Subscription Secret>")
# do some work...
await user.make_charge("<Charge ID>")
# charge is now made, return the response
Last modified 1yr ago