UpPromote Marketplace API
    • Get offers
      GET
    • Get affiliate links
      GET
    • Get referral orders
      GET
    • Get payments
      GET
    • Schemas
      • object
      • Referral

      Get affiliate links

      GET
      /api/v1/affiliate-link/data
      Retrieve the list of affiliate links for the offers you've joined on the UpPromote Marketplace. Each offer will have one corresponding affiliate link. This endpoint supports pagination and returns only links for offers which are currently active on the Marketplace.

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************
      Query Params

      Responses

      🟢200OK
      application/json
      Successful operation
      Body

      🔴500Server Error
      🟠401Unauthorized
      🟠422Parameter Error
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/api/v1/affiliate-link/data?page=1' \
      --header 'Authorization: Bearer <token>'
      Response Response Example
      200 - Example 1
      {
          "status": 200,
          "data": [
              {
                  "current_page": 1,
                  "first_page_url": "/?page=1",
                  "per_page": 10,
                  "from": 1,
                  "to": 10,
                  "data": [
                      {
                          "id": 12345,
                          "offer_name": "Test store",
                          "affiliate_link": "https://yourshopdomain.com?sca_ref=upprote"
                      }
                  ]
              }
          ]
      }
      Modified at 2025-07-03 03:49:04
      Previous
      Get offers
      Next
      Get referral orders
      Built with