Become a Paddle marketplace publisher
Want to build an app for Paddle users to install? Apply to become a marketplace publisher and we'll share more about the program.
Work in progress. Placeholder content for the Build apps track — endpoints and parameters are illustrative.
Installation uses the OAuth2 authorization code flow. A seller installs your app from the marketplace, authorizes the requested permissions, and your app exchanges the resulting code for tokens.
1. Send the seller to the install URL
GET https://vendors.paddle.com/install ?client_id={your_app_client_id} &redirect_uri={your_callback_url} &state={random_csrf_token}2. Handle the callback
After the seller authorizes, Paddle redirects to your callback with an authorization code. Verify the state, then exchange the code for an access token at the auth server.
3. Call the API
Use the access token as a bearer token, scoped to the permissions the seller granted.
GET /customersAuthorization: Bearer {access_token}Next step
Once connected, build out your integration and submit it for the marketplace.