Skip to main content
POST
/
payouts
Create Payout
curl --request POST \
  --url https://api.whop.com/api/v1/payouts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "<string>",
  "amount": 123,
  "payout_method_id": "<string>",
  "currency": "<string>",
  "idempotency_key": "<string>"
}
'
import requests

url = "https://api.whop.com/api/v1/payouts"

payload = {
"account_id": "<string>",
"amount": 123,
"payout_method_id": "<string>",
"currency": "<string>",
"idempotency_key": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
account_id: '<string>',
amount: 123,
payout_method_id: '<string>',
currency: '<string>',
idempotency_key: '<string>'
})
};

fetch('https://api.whop.com/api/v1/payouts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.whop.com/api/v1/payouts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'account_id' => '<string>',
'amount' => 123,
'payout_method_id' => '<string>',
'currency' => '<string>',
'idempotency_key' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.whop.com/api/v1/payouts"

payload := strings.NewReader("{\n \"account_id\": \"<string>\",\n \"amount\": 123,\n \"payout_method_id\": \"<string>\",\n \"currency\": \"<string>\",\n \"idempotency_key\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.whop.com/api/v1/payouts")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"account_id\": \"<string>\",\n \"amount\": 123,\n \"payout_method_id\": \"<string>\",\n \"currency\": \"<string>\",\n \"idempotency_key\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.whop.com/api/v1/payouts")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_id\": \"<string>\",\n \"amount\": 123,\n \"payout_method_id\": \"<string>\",\n \"currency\": \"<string>\",\n \"idempotency_key\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "amount": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "currency": "<string>",
  "estimated_arrival": "2023-11-07T05:31:56Z",
  "fee_amount": 123,
  "id": "<string>",
  "object": "payout",
  "payer_name": "<string>",
  "payout_token": {
    "nickname": "<string>",
    "payout_destination": {
      "icon_url": "<string>",
      "payer_name": "<string>"
    }
  }
}
{
"error": {
"message": "<string>",
"type": "<string>"
}
}
{
"error": {
"message": "<string>",
"type": "<string>"
}
}
{
"error": {
"message": "<string>",
"type": "<string>"
}
}
{
"error": {
"message": "<string>",
"type": "<string>"
}
}

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************

Headers

Api-Version-Date
string

Pins the request to a dated API version.

Example:

"2026-07-08-1"

Body

application/json
account_id
string
required

The account to pay out from (a biz_ identifier).

amount
number<float>
required

The amount to pay out in the specified currency.

payout_method_id
string
required

The saved payout method to deliver to (a potk_ identifier).

currency
string

The payout currency. Defaults to usd.

idempotency_key
string

A client-generated key that makes retries safe. Retrying with the same key returns the original payout instead of creating a second one.

Response

payout created

amount
number<float>
required

The payout amount in whole currency units.

created_at
string<date-time>
required

When the payout was created.

currency
string
required

Payout currency.

estimated_arrival
string<date-time> | null
required

Estimated time the funds become available in the destination account. Null until the payout settles.

fee_amount
number<float>
required

The fee charged for the payout, in the payout currency.

id
string
required

Payout ID.

object
enum<string>
required
Available options:
payout
payer_name
string | null
required

Name of the entity processing the payout. Null until the payout settles.

payout_token
object | null
required

The saved payout method used. Requires payout:destination:read; null without it.

speed
enum<string>
required

Payout delivery speed.

Available options:
standard,
instant
status
enum<string>
required

Current payout status, in the same vocabulary as GET /payouts.

Available options:
requested,
in_transit,
completed,
failed,
canceled