> ## Documentation Index
> Fetch the complete documentation index at: https://developers.everflow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Tracking URL

Returns the tracking link URL for a specific offer and destination URL combination. Use `urlId=0` if the offer has no extra destination URLs configured. Returns 400 if the affiliate is not authorized to run this offer.


## OpenAPI

````yaml openapi/affiliate-offers.yaml get /affiliates/offers/{offerId}/url/{urlId}
openapi: 3.0.3
info:
  title: Everflow Affiliate API - Offers
  description: >
    Offer discovery and tracking URL endpoints for the Everflow Affiliate API.
    These endpoints allow affiliates to browse visible offers, retrieve details
    for offers they can run, and generate tracking links.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Affiliate Offers
    description: Endpoints for discovering and retrieving offer details as an affiliate.
paths:
  /affiliates/offers/{offerId}/url/{urlId}:
    get:
      tags:
        - Affiliate Offers
      summary: Find Tracking URL
      parameters:
        - name: offerId
          in: path
          required: true
          description: The numeric ID of the offer.
          schema:
            type: integer
        - name: urlId
          in: path
          required: true
          description: >
            The destination URL ID. Use 0 for the default offer URL when no
            extra destination URLs are configured.
          schema:
            type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    description: The full tracking link URL for the affiliate to use.
        '400':
          description: Affiliate is not authorized to run this offer.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: >
        The affiliate's API key generated from the Affiliate Portal. Uses the
        X-Eflow-Api-Key header.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````