> ## 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 Impression URL

Returns the impression tracking URL for a specific offer. Use this URL to track impressions (ad views) separately from clicks. Use `urlId=0` if no extra destination URLs are needed.


## OpenAPI

````yaml openapi/affiliate-offers.yaml get /affiliates/offers/{offerId}/impressionurl/{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}/impressionurl/{urlId}:
    get:
      tags:
        - Affiliate Offers
      summary: Find Impression 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 URL.
          schema:
            type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    description: The full impression tracking URL.
        '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

````