LeadDyno API
This section allows users to track web traffic and effectively manage their affiliate program. By utilizing this API, users can gain valuable insights into their website traffic and enhance their affiliate marketing strategies.
Just getting started?
Check out our guide
Base URL
Production:
https://api.leaddyno.com/v1/
Affiliates
This section allows users to manage and track affiliate relationships within their program. By utilizing this section, users can view, add, update, and remove affiliates, as well as access performance metrics and commission details. This section provides essential functionality for effectively managing affiliate partnerships and tracking the success of their referral activities.
Purchases
The Purchases section of the LeadDyno REST API allows users to retrieve detailed information about purchases made through the platform. With this functionality, users can track and manage customer transactions, gain insights into purchase patterns, and analyze sales data for informed decision-making.
Commissions
This section allows users to retrieve detailed information about the commissions earned through their affiliate marketing program. With this functionality, users can track and manage the financial aspects of their affiliate relationships, providing insight into earnings and performance metrics.
Leads
This section allows users to manage information related to potential leads or customers. Users can retrieve details about leads, update lead information, and track the status of leads within their LeadDyno account. This functionality provides essential tools for businesses looking to effectively manage and nurture their leads.
Visitors
This section allows users to manage and retrieve data related to website visitors, whether they were referred by affiliates or arrived organically. You can use these endpoints to track the journey and behavior of visitors across your website, helping to analyze performance and conversions.
What made this section unhelpful for you?
Create a visitor
Creates a new visitor entry in your LeadDyno account. You can manually create visitors using this endpoint and specify details like tracking code, email, and other relevant information.
Query Parameters
Your private key
Body Parameters
The tracking code assigned to the visitor. If not provided, a unique code will be generated automatically.
Response
Response Attributes
The unique identifier for the visitor.
The date and time the visitor was created.
The date and time when the visitor information was last updated.
The tracking code assigned to the visitor. If not provided, a unique code will be generated automatically.
Not specified.
The URL of the current page the visitor is on.
The URL of the referring website that led the visitor to the current site.
The search term used by the visitor to reach the current site.
The affiliate partner associated with the visitor.
The marketing campaign that brought the visitor to the site.
What made this section unhelpful for you?
Response
{
"id": 8288,
"created_at": "2024-09-25T19:38:46Z",
"updated_at": "2024-09-25T19:38:46Z",
"tracking_code": "b5fc67fa-72ea-4ec3-8635-abcdefghijkl",
"lead": null,
"url": null,
"referrer": null,
"search_term": null,
"affiliate": null,
"campaign": null
}
What made this section unhelpful for you?
Retrieve a visitor by ID
The endpoint (GET /visitors/:id) retrieves detailed information about a specific visitor based on their unique identifier. By requesting this endpoint, users can access valuable data about individual visitors for analysis and tracking purposes within the LeadDyno REST API.
Query Parameters
Your private key
Path Parameters
The visitor ID
Response
Response Attributes
The unique identifier for the visitor.
The date and time the visitor was created.
The date and time the visitor was last updated.
The tracking code linked to the visitor.
Indicates whether the visitor is a lead.
The URL linked to the visitor.
Show child attributes
The referrer URL for the visitor.
The search term used by the visitor.
The affiliate associated with the visitor.
Show child attributes
The campaign identifier related to the visitor.
What made this section unhelpful for you?
Response
{
"id": 8287,
"created_at": "2024-09-06T17:07:53Z",
"updated_at": "2024-09-06T17:07:53Z",
"tracking_code": "b5fc67fa-72ea-4ec3-8635-abcdefghijkl",
"lead": null,
"url": {
"id": 50,
"url": "https://example.com/product/ecosaver-pro?afmc=1w"
},
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17167,
"email": "ld-preview-affiliate@leaddyno.com"
},
"campaign": null
}
What made this section unhelpful for you?
Retrieve a visitor by tracking code
The endpoint (GET /visitors/by_tracking_code) retrieves detailed information about a visitor by specifying their unique tracking code. By using this API section, users can access visitor data associated with a specific tracking code, enabling them to analyze visitor behavior and interactions on their platform.
Query Parameters
Your private key
The unique tracking code assigned to the visitor to retrieve their information.
Response
Response Attributes
Show child attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"id": 8287,
"created_at": "2024-09-06T17:07:53Z",
"updated_at": "2024-09-06T17:07:53Z",
"tracking_code": "b5fc67fa-72ea-4ec3-8635-abcdefghijkl",
"lead": null,
"url": {
"id": 50,
"url": "https://example.com/product/ecosaver-pro?afmc=1w"
},
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17167,
"email": "ld-preview-affiliate@leaddyno.com"
},
"campaign": null
}
What made this section unhelpful for you?
Retrieve total visitor count
This endpoint (GET /visitors/count) allows users to retrieve the total number of visitors tracked by LeadDyno.
Query Parameters
Your private key
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"count": 8192
}
What made this section unhelpful for you?
List all visitors
Returns a paginated list of visitors. Visitors are returned in descending order by creation date, with the most recent visitors appearing first. Use the page parameter to navigate through the results. Each page contains up to 100 records.
Query Parameters
Your private key
The page number for pagination. Defaults to 1, with 100 records per page.
Response
Response Attributes
Show child attributes
Show child attributes
Show child attributes
What made this section unhelpful for you?
Response
[
{
"id": 8288,
"created_at": "2024-09-25T19:38:46Z",
"updated_at": "2024-09-25T19:38:46Z",
"tracking_code": "00035dc5-c2fa-4099-bc7b-abcdefghijkl",
"lead": {
"id": 1695,
"email": "lead@example.com"
},
"url": {
"id": 50,
"url": "https://example.com/product/ecosaver-pro?afmc=1w"
},
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17167,
"email": "ld-preview-affiliate@leaddyno.com"
},
"campaign": null
},
{
"id": 8287,
"created_at": "2024-09-06T17:07:53Z",
"updated_at": "2024-09-06T17:07:53Z",
"tracking_code": "b5fc67fa-72ea-4ec3-8635-abcdefghijkl",
"lead": null,
"url": {
"id": 50,
"url": "https://example.com/product/ecosaver-pro?afmc=1w"
},
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17167,
"email": "ld-preview-affiliate@leaddyno.com"
},
"campaign": null
},
{
"id": 8286,
"created_at": "2024-09-06T17:07:52Z",
"updated_at": "2024-09-06T17:10:31Z",
"tracking_code": "f5edb52e-a7ee-43f3-9054-abcdefghijkl",
"lead": {
"id": 1695,
"email": "lead@example.com"
},
"url": {
"id": 50,
"url": "https://example.com/product/ecosaver-pro?afmc=1w"
},
"referrer": null,
"search_term": null,
"affiliate": {
"id": 17167,
"email": "ld-preview-affiliate@leaddyno.com"
},
"campaign": null
}
]
What made this section unhelpful for you?
Campaigns
This section allows users to manage and track their marketing campaigns efficiently. With this functionality, users can create, monitor, and analyze the performance of their campaigns to optimize their marketing efforts and drive better results.
Custom Fields
The Custom Fields section allows users to define and manage custom fields within the LeadDyno. By utilizing this section, users can customize their data structures and collect specific information tailored to their business needs. This section empowers users to enhance the flexibility and functionality of their LeadDyno integration.
Sub IDs
This section allows users to retrieve detailed information about the affiliate links, Sub IDS.