JavaScript
import Whop from '@whop/sdk';
const client = new Whop({
apiKey: process.env['WHOP_API_KEY'], // This is the default and can be omitted
});
const verifications = await client.verifications.list({ account_id: 'account_id' });
console.log(verifications.data);curl --request GET \
--url https://api.whop.com/api/v1/verifications \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.whop.com/api/v1/verifications"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.whop.com/api/v1/verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.whop.com/api/v1/verifications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.whop.com/api/v1/verifications")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.whop.com/api/v1/verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"address": {
"city": "<string>",
"country": "<string>",
"line1": "<string>",
"line2": "<string>",
"postal_code": "<string>",
"state": "<string>"
},
"business_name": "<string>",
"business_structure": "<string>",
"country": "<string>",
"created_at": "<string>",
"date_of_birth": "<string>",
"first_name": "<string>",
"id": "<string>",
"last_name": "<string>",
"requested_information": [
{
"description": "<string>",
"error_message": "<string>",
"field": "<string>",
"id": "<string>",
"label": "<string>",
"options": [
"<string>"
],
"requested_files": [
{
"category": "<string>",
"is_optional": true,
"kind": "<string>",
"label": "<string>",
"multiple": true
}
],
"type": "<string>"
}
],
"required_documents": [
{
"document": "<string>",
"rejection_reason": "<string>"
}
],
"session_url": "<string>",
"updated_at": "<string>"
}
]
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}Verifications
List Verifications
Returns verifications for an account, including their status and any required actions.
GET
/
verifications
JavaScript
import Whop from '@whop/sdk';
const client = new Whop({
apiKey: process.env['WHOP_API_KEY'], // This is the default and can be omitted
});
const verifications = await client.verifications.list({ account_id: 'account_id' });
console.log(verifications.data);curl --request GET \
--url https://api.whop.com/api/v1/verifications \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.whop.com/api/v1/verifications"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.whop.com/api/v1/verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.whop.com/api/v1/verifications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.whop.com/api/v1/verifications")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.whop.com/api/v1/verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"address": {
"city": "<string>",
"country": "<string>",
"line1": "<string>",
"line2": "<string>",
"postal_code": "<string>",
"state": "<string>"
},
"business_name": "<string>",
"business_structure": "<string>",
"country": "<string>",
"created_at": "<string>",
"date_of_birth": "<string>",
"first_name": "<string>",
"id": "<string>",
"last_name": "<string>",
"requested_information": [
{
"description": "<string>",
"error_message": "<string>",
"field": "<string>",
"id": "<string>",
"label": "<string>",
"options": [
"<string>"
],
"requested_files": [
{
"category": "<string>",
"is_optional": true,
"kind": "<string>",
"label": "<string>",
"multiple": true
}
],
"type": "<string>"
}
],
"required_documents": [
{
"document": "<string>",
"rejection_reason": "<string>"
}
],
"session_url": "<string>",
"updated_at": "<string>"
}
]
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}Authorizations
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
Pins the request to a dated API version.
Example:
"2026-07-18"
Query Parameters
Account or user ID whose verifications you want to list. Use a biz_ account ID, or the caller's user_ ID for personal verifications.
Field used to sort returned verifications.
Available options:
updated_at, created_at Sort direction for returned verifications.
Available options:
asc, desc Response
OK
Show child attributes
Show child attributes
⌘I

