Retrieve a single affiliate request for your merchant account.
/api/v2/affiliate-requests/{uuid}
Authorization
The Bearer token generated in the Affilibee dashboard.
application/json
curl -X GET "https://affilibee.com/api/v2/affiliate-requests/9b9e1a12-8e6b-4e6b-8e6b-8e6b8e6b8e6b" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Accept: application/json"
const token = "YOUR_ACCESS_TOKEN";
const url = "https://affilibee.com/api/v2/affiliate-requests/9b9e1a12-8e6b-4e6b-8e6b-8e6b8e6b8e6b";
fetch(url, {
method: "GET",
headers: {
"Authorization": `Bearer ${token}`,
"Accept": "application/json"
}
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
import requests
token = "YOUR_ACCESS_TOKEN"
url = "https://affilibee.com/api/v2/affiliate-requests/9b9e1a12-8e6b-4e6b-8e6b-8e6b8e6b8e6b"
headers = {
"Authorization": f"Bearer {token}",
"Accept": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
$token = 'YOUR_ACCESS_TOKEN';
$url = 'https://affilibee.com/api/v2/affiliate-requests/9b9e1a12-8e6b-4e6b-8e6b-8e6b8e6b8e6b';
$response = Http::withToken($token)
->withHeaders([
'Accept' => 'application/json',
])
->get($url);
print_r($response->json());
application/json
Successful response
The affiliate request details have been successfully retrieved.
{
"success": true,
"data": {
"affiliate_request": {
"uuid": "00000000-0000-0000-0000-000000000000",
"affiliate": {
"name": "John Doe",
"slug": "john-doe"
},
"status": "pending",
"requested_at": "2024-03-21T10:00:00Z"
}
},
"errors": null,
"meta": {
"trace_id": "20240321:api:abc12"
}
}
Use the UUID returned in the list response to retrieve a specific request.
We help teams run affiliate programs through API-first integrations that fit the platform they already use.
© 2025 Affilibee Handelsbolag (969802-2481)