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 response = await client.ads.duplicate('id');
console.log(response.data);curl --request POST \
--url https://api.whop.com/api/v1/ads/{id}/duplicate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"count": 123,
"preserve_engagement": true,
"target_ad_group_id": "<string>"
}
'import requests
url = "https://api.whop.com/api/v1/ads/{id}/duplicate"
payload = {
"count": 123,
"preserve_engagement": True,
"target_ad_group_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.whop.com/api/v1/ads/{id}/duplicate",
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([
'count' => 123,
'preserve_engagement' => true,
'target_ad_group_id' => '<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/ads/{id}/duplicate"
payload := strings.NewReader("{\n \"count\": 123,\n \"preserve_engagement\": true,\n \"target_ad_group_id\": \"<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/ads/{id}/duplicate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 123,\n \"preserve_engagement\": true,\n \"target_ad_group_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.whop.com/api/v1/ads/{id}/duplicate")
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 \"count\": 123,\n \"preserve_engagement\": true,\n \"target_ad_group_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"ad_campaign": {
"id": "<string>"
},
"ad_group": {
"id": "<string>"
},
"added_to_cart_value": 123,
"added_to_carts": 123,
"call_to_action": "learn_more",
"click_through_rate": 123,
"clicks": 123,
"completed_registration_value": 123,
"completed_registrations": 123,
"contact_value": 123,
"contacts": 123,
"cost_per_added_to_cart": 123,
"cost_per_click": 123,
"cost_per_completed_registration": 123,
"cost_per_contact": 123,
"cost_per_lead": 123,
"cost_per_mille": 123,
"cost_per_purchase": 123,
"cost_per_result": 123,
"cost_per_schedule": 123,
"cost_per_submitted_application": 123,
"cost_per_unique_click": 123,
"cost_per_viewed_content": 123,
"created_at": "<string>",
"creatives": [
{
"crop": {
"height": 123,
"width": 123,
"x": 123,
"y": 123
},
"format": "square",
"id": "<string>",
"media_type": "<string>",
"url": "<string>"
}
],
"custom_conversions": 123,
"custom_event_counts": {},
"custom_event_values": {},
"delivery_status": "rejected",
"descriptions": [
"<string>"
],
"frequency": 123,
"headlines": [
"<string>"
],
"id": "<string>",
"impressions": 123,
"issues": [
{
"id": "<string>",
"message": "<string>",
"resource_id": "<string>",
"resource_type": "ad_campaign"
}
],
"lead_form": {
"completion": {
"button_text": "<string>",
"description": "<string>",
"headline": "<string>",
"url": "<string>"
},
"disclaimer": {
"body": "<string>",
"checkboxes": [
{
"checked_by_default": true,
"key": "<string>",
"required": true,
"text": "<string>"
}
],
"title": "<string>"
},
"form_type": "more_volume",
"intro": {
"description": "<string>",
"headline": "<string>"
},
"name": "<string>",
"phone_verification": true,
"privacy_policy": {
"link_text": "<string>",
"url": "<string>"
},
"questions": [
{
"type": "<string>",
"format": "<string>",
"label": "<string>",
"options": [
{
"value": "<string>",
"key": "<string>",
"logic": {
"action": "go_to_question",
"target_end_page_index": 123,
"target_question_index": 123
}
}
]
}
]
},
"lead_form_id": "<string>",
"lead_value": 123,
"leads": 123,
"messaging_config": {
"keyword": "<string>",
"message": "<string>"
},
"multi_advertiser_ads": true,
"post_id": "<string>",
"post_source": "facebook",
"post_thumbnail_url": "<string>",
"primary_texts": [
"<string>"
],
"purchase_value": 123,
"purchases": 123,
"reach": 123,
"result_event": "purchase",
"result_event_name": "<string>",
"results": 123,
"return_on_ad_spend": 123,
"schedule_value": 123,
"schedules": 123,
"social_accounts": [
{
"id": "<string>"
}
],
"spend": 123,
"spend_currency": "<string>",
"status": "active",
"submitted_application_value": 123,
"submitted_applications": 123,
"title": "<string>",
"unique_click_through_rate": 123,
"unique_clicks": 123,
"updated_at": "<string>",
"url": "<string>",
"url_parameters": {},
"viewed_content_value": 123,
"viewed_contents": 123
}
]
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>"
}
}Ads
Duplicate an Ad
Copies the ad into its own ad group, or into target_ad_group_id (which must belong to the same account and be compatible with the ad). Copies keep the source ad’s active/paused state.
POST
/
ads
/
{id}
/
duplicate
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 response = await client.ads.duplicate('id');
console.log(response.data);curl --request POST \
--url https://api.whop.com/api/v1/ads/{id}/duplicate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"count": 123,
"preserve_engagement": true,
"target_ad_group_id": "<string>"
}
'import requests
url = "https://api.whop.com/api/v1/ads/{id}/duplicate"
payload = {
"count": 123,
"preserve_engagement": True,
"target_ad_group_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.whop.com/api/v1/ads/{id}/duplicate",
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([
'count' => 123,
'preserve_engagement' => true,
'target_ad_group_id' => '<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/ads/{id}/duplicate"
payload := strings.NewReader("{\n \"count\": 123,\n \"preserve_engagement\": true,\n \"target_ad_group_id\": \"<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/ads/{id}/duplicate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 123,\n \"preserve_engagement\": true,\n \"target_ad_group_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.whop.com/api/v1/ads/{id}/duplicate")
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 \"count\": 123,\n \"preserve_engagement\": true,\n \"target_ad_group_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"ad_campaign": {
"id": "<string>"
},
"ad_group": {
"id": "<string>"
},
"added_to_cart_value": 123,
"added_to_carts": 123,
"call_to_action": "learn_more",
"click_through_rate": 123,
"clicks": 123,
"completed_registration_value": 123,
"completed_registrations": 123,
"contact_value": 123,
"contacts": 123,
"cost_per_added_to_cart": 123,
"cost_per_click": 123,
"cost_per_completed_registration": 123,
"cost_per_contact": 123,
"cost_per_lead": 123,
"cost_per_mille": 123,
"cost_per_purchase": 123,
"cost_per_result": 123,
"cost_per_schedule": 123,
"cost_per_submitted_application": 123,
"cost_per_unique_click": 123,
"cost_per_viewed_content": 123,
"created_at": "<string>",
"creatives": [
{
"crop": {
"height": 123,
"width": 123,
"x": 123,
"y": 123
},
"format": "square",
"id": "<string>",
"media_type": "<string>",
"url": "<string>"
}
],
"custom_conversions": 123,
"custom_event_counts": {},
"custom_event_values": {},
"delivery_status": "rejected",
"descriptions": [
"<string>"
],
"frequency": 123,
"headlines": [
"<string>"
],
"id": "<string>",
"impressions": 123,
"issues": [
{
"id": "<string>",
"message": "<string>",
"resource_id": "<string>",
"resource_type": "ad_campaign"
}
],
"lead_form": {
"completion": {
"button_text": "<string>",
"description": "<string>",
"headline": "<string>",
"url": "<string>"
},
"disclaimer": {
"body": "<string>",
"checkboxes": [
{
"checked_by_default": true,
"key": "<string>",
"required": true,
"text": "<string>"
}
],
"title": "<string>"
},
"form_type": "more_volume",
"intro": {
"description": "<string>",
"headline": "<string>"
},
"name": "<string>",
"phone_verification": true,
"privacy_policy": {
"link_text": "<string>",
"url": "<string>"
},
"questions": [
{
"type": "<string>",
"format": "<string>",
"label": "<string>",
"options": [
{
"value": "<string>",
"key": "<string>",
"logic": {
"action": "go_to_question",
"target_end_page_index": 123,
"target_question_index": 123
}
}
]
}
]
},
"lead_form_id": "<string>",
"lead_value": 123,
"leads": 123,
"messaging_config": {
"keyword": "<string>",
"message": "<string>"
},
"multi_advertiser_ads": true,
"post_id": "<string>",
"post_source": "facebook",
"post_thumbnail_url": "<string>",
"primary_texts": [
"<string>"
],
"purchase_value": 123,
"purchases": 123,
"reach": 123,
"result_event": "purchase",
"result_event_name": "<string>",
"results": 123,
"return_on_ad_spend": 123,
"schedule_value": 123,
"schedules": 123,
"social_accounts": [
{
"id": "<string>"
}
],
"spend": 123,
"spend_currency": "<string>",
"status": "active",
"submitted_application_value": 123,
"submitted_applications": 123,
"title": "<string>",
"unique_click_through_rate": 123,
"unique_clicks": 123,
"updated_at": "<string>",
"url": "<string>",
"url_parameters": {},
"viewed_content_value": 123,
"viewed_contents": 123
}
]
}{
"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
A unique key that makes this request safe to retry. See Idempotent requests.
Maximum string length:
255Example:
"d9105228-4a08-46b1-8b91-42fed586d383"
Pins the request to a dated API version.
Example:
"2026-07-20"
Path Parameters
The ad ID.
Body
application/json
Response
ad duplicated
Show child attributes
Show child attributes
⌘I

