Skip to main content
GET
/
link_data
Links Data
curl --request GET \
  --url https://api.example.com/link_data \
  --header 'Authorization: Bearer <token>'
{
  "pagination_info": {
    "total_items": 123,
    "total_pages": 123,
    "current_page": 123,
    "items_per_page": 123
  },
  "Links_Data": [
    {
      "totalClickThroughs": 123,
      "totalAttributedSales14d": 123,
      "totalUnitsSold14d": 123,
      "totalAttributedTotalPurchases14d": 123,
      "commission_amount": 123,
      "totalAttributedTotalDetailPageViewsClicks14d": 0,
      "totalAttributedTotalAddToCartClicks14d": 0,
      "link_info": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.archeraffiliates.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

startdate
string
required

Start date for reporting in YYYYMMDD format.

enddate
string
required

End date for reporting in YYYYMMDD format.

sort_order
boolean
required

Sorting — True for ascending, False for descending

sort
enum<integer>
default:0

totalClickThroughs = 0, totalAttributedSales14d = 1, totalUnitsSold14d = 2, totalattributedTotalPurchases14d = 3, created_date_time = 4

Available options:
0,
1,
2,
3,
4
minclicks
integer | null
default:0
minsales
integer | null
default:0
page
integer | null
default:1
limit
integer | null
default:100
geo
string | null

Marketplace region (US, EU, FE). Defaults to US if not provided.

Response

Successful Response

pagination_info
PaginationInfo · object
required