Trackers and Examples

This chapter contains examples of integrations with common known trackers with DAO.AD

Keitaro

Summary

This guide explains how to integrate Keitaro with DAO.AD for click tracking and conversion tracking.

Before You Begin
Keitaro Tracking Flow

flow_Keitaro_DAOAD_integration_flow.png

Steps
  1. Sign in to Keitaro tracker.
  2. Open the "Traffic Sources" menu.
    4_keitaro_tracking_schema.png
  3. Click the "Create" button and select the "DAO.AD" template.
    keitaro_2_tracking_schema.png
  4. Locate the "S2S Postback" section and click the Edit button.keitaro_3_tracking_schema.png 
  5. Configure the postback URL using the URL constructor.keitaro_4_tracking_schema.png
  6. Replace the API key placeholder with your DAO.AD API key from DAO.AD Profile page and click Apply.
  7. Verify that all parameters are configured correctly.keitaro_6.1_tracking_schema.png
  8. Save the created traffic source.
  9. Go to "Campaigns" menu in Keitaro tracker.
  10. Create a campaign connected to your CPA network or landing page.
  11. Select the previously created "DAO.AD" traffic source and save the campaign.key_3_tracking_schema.png
  12. Copy the campaign URL by clicking the Link icon.5_keitaro_tracking_schema.png
  13. Paste the campaign URL into the Creative URL field in DAO.AD.6_keitaro_tracking_schema.png
  14. Save the creative and campaign settings in DAO.AD.
How it works

This allows DAO.AD to attribute conversions to the correct traffic source and optimize campaign performance.

Voluum

Summary

This guide explains how to integrate Voluum with DAO.AD for click tracking and conversion tracking.

Before You Begin
Voluum Tracking Flow

flow_Voluum_Tracking_FLOW.png

Steps
  1. Sign in to Voluum tracker.
  2. Open the "Traffic sources" menu and click "Create".

    vol-1-tracking-schema.png



  3. Locate the "DAO.AD" template.

    vol_2_tracking_schema.png

  4. Scroll down to the "Passing conversion info to traffic source" section.
  5. Replace the API key placeholder with your DAO.AD API key from the DAO.AD Profile page and click Save.

    vol_3_tracking_schema.png
  6. Go to "Campaigns" menu in Voluum tracker.
  7. Create a campaign connected to your CPA network or landing page.
  8. Select the previously created "DAO.AD" traffic source and choose a traffic type (optional).

    vol_4_tracking_schema.png
  9. Add a previously created Offer in Voluum (for example, a CPA offer or landing page).

    vol-5-tracking_schema.png

  10. Open the Tracking & Automizer tab and copy the Voluum Campaign URL.

    vol-6-tracking-schema.png

  11. Paste the Voluum Campaign URL into the DAO.AD Creative URL field and click Save.
How It Works

This allows DAO.AD to attribute conversions to the correct traffic source and optimize campaign performance.

Binom

Summary

This guide explains how to integrate Binom with DAO.AD for click tracking and conversion tracking.

Before You Begin
Binom Tracking Flow

binom_tracking_flow (1).png

Steps
  1. Sign in to Binom.
  2. Open the "Traffic sources" menu and click "Create".

    binom_1_tracking_schema.png


  3. Click "Load from template"

    binom_2_tracking_schema.png

  4. Find "DAO.AD" in the list of predefined templates.

    binom_3_tracking_schema.png

  5. Replace the placeholder API key with your DAO.AD API key from the DAO.AD Profile page and click Save.

    binom_4_tracking_schema.png

  6. Go to "Campaigns" menu in Binom.
  7. Create a campaign connected to your CPA network or landing page.
  8. Select the previously created "DAO.AD" traffic source.
  9. Copy the campaign URL by clicking the link icon next to the campaign name.

    binom_5_tracking_schema.png

  10. Paste the Binom Campaign URL into the DAO.AD Creative URL field and click Save.
How It Works

This allows DAO.AD to attribute conversions to the correct traffic source and optimize campaign performance.

Bemob

Summary

This guide explains how to integrate Bemob with DAO.AD for click tracking and conversion tracking.

Before You Begin
Bemob Tracking Flow

bemob_tracking_flow (1).png


Steps
  1. Sign in to Bemob.
  2. Open the "Traffic sources" menu and select "New from template".

    bemob_1_tracking_schema.png
  3. Find "DAO.AD" in the list of predefined templates.

    bemob_2_tracking_schema.png

  4. Replace the placeholder API key with your DAO.AD API key from your DAO.AD Profile page and click Save.

    bemob_3_tracking_schema.png

  5. Go to "Campaigns" menu in Bemob.
  6. Create a campaign connected to your offer or landing page.
  7. Select the previously created "DAO.AD" traffic source.bemob_4_tracking_schema.png
  8. Copy the Campaign URL by clicking the copy icon next to the Campaign URL field.

    bemob_5_tracking_schema.png

  9. Paste the Bemob Campaign URL into the DAO.AD Creative URL field and click Save.
How It Works

This allows DAO.AD to attribute conversions to the correct traffic source and optimize campaign performance.

Test a Conversion (HTTP Examples)

Summary

This guide explains how to manually test a conversion postback using a web browser or HTTP request tools. It helps verify that your tracking configuration is working correctly before launching a campaign.

When should you use this?

Use conversion testing when:

test_conv_flow (1).png

Example DAO.AD Postback URL
http://api.daopush-api.info/api/postback/campaign?
key=YOUR_API_KEY
&sum=1
&click-id=123456789
&type=main

Parameter explanation:

Parameter Example Description
key YOUR_API_KEY DAO.AD API key
sum 1 Conversion payout
click-id 123456789 Original click ID
type main Conversion type

Method 1: Browser Test

Simply open the URL in your browser:

http://api.daopush-api.info/api/postback/campaign?key=YOUR_API_KEY&sum=1&click-id=123456789&type=main

Expected result:

{"status":"success"}

or similar success response.

Method 2: cURL Example

Linux / macOS / Windows Terminal

curl "http://api.daopush-api.info/api/postback/campaign?key=YOUR_API_KEY&sum=1&click-id=123456789&type=main"

Expected result:

{"status":"success"}
Method 3: Keitaro Test
  1. Open the campaign.
  2. Find a real Click ID.
  3. Replace {external_id} with that Click ID.
  4. Send the postback manually.
  5. Verify that the conversion appears in DAO.AD statistics.
Method 4: Binom Test
  1. Open Click Log.
  2. Copy a valid Click ID.
  3. Execute the postback URL manually.
  4. Check DAO.AD Reports.
Common Errors

Invalid API Key

{"status":"error","message":"invalid key"}

Solution:
Verify the API key from your DAO.AD Profile page.

Missing Click ID

{"status":"error","message":"click-id not found"}

Solution:
Use a valid Click ID generated by DAO.AD.

Duplicate Conversion

{"status":"error","message":"duplicate conversion"}

Solution:
Check the TTL parameter or use a new Click ID.