Skip to main content
GET
/
get_all_links
List the attribution links you've created
curl --request GET \
  --url https://api.example.com/get_all_links \
  --header 'Authorization: Bearer <token>'
{
  "all_links": [
    {
      "url": "<string>",
      "asin": "<string>",
      "product_name": "<string>",
      "created_date_time": "<string>",
      "link_name": "<string>",
      "marketplace": "<string>"
    }
  ],
  "pagination_info": {
    "total_items": 123,
    "total_pages": 123,
    "current_page": 123,
    "items_per_page": 123,
    "items_start": 123,
    "items_end": 123
  }
}

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

page
integer | null
default:1
limit
integer | null
default:100
marketplace
string | null
default:amazon.com

Response

Successful Response

pagination_info
PaginationInfo · object
required