> ## 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 Click

> Returns full details for a single click by its transaction ID.




## OpenAPI

````yaml openapi/affiliate-reporting.yaml get /affiliates/reporting/clicks/{transactionId}
openapi: 3.0.3
info:
  title: Everflow Affiliate API - Reporting
  description: >
    Reporting endpoints for the Everflow Affiliate API. These endpoints are
    accessed by affiliate/partner users using their own API key and return data
    scoped to the authenticated affiliate's account only. For more detail, see
    [Essential Reports For New
    Partners](https://helpdesk.everflow.io/collaborator/essential-reports-for-new-partners)
    in the Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Affiliate Reporting
    description: Reporting endpoints available to affiliate users.
paths:
  /affiliates/reporting/clicks/{transactionId}:
    get:
      tags:
        - Affiliate Reporting
      summary: Get Click By ID
      description: |
        Returns full details for a single click by its transaction ID.
      parameters:
        - name: transactionId
          in: path
          required: true
          description: The transaction ID of the click.
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  transaction_id:
                    type: string
                    description: Unique transaction identifier.
                  is_unique:
                    type: integer
                  unix_timestamp:
                    type: integer
                  tracking_url:
                    type: string
                  source_id:
                    type: string
                  sub1:
                    type: string
                  sub2:
                    type: string
                  sub3:
                    type: string
                  sub4:
                    type: string
                  sub5:
                    type: string
                  sub6:
                    type: string
                  sub7:
                    type: string
                  sub8:
                    type: string
                  sub9:
                    type: string
                  sub10:
                    type: string
                  revenue_type:
                    type: string
                  revenue:
                    type: number
                  user_ip:
                    type: string
                  error_code:
                    type: integer
                  error_message:
                    type: string
                  currency_id:
                    type: string
                  coupon_code:
                    type: string
                  idfa:
                    type: string
                  idfa_md5:
                    type: string
                  idfa_sha1:
                    type: string
                  google_ad_id:
                    type: string
                  google_ad_id_md5:
                    type: string
                  google_ad_id_sha1:
                    type: string
                  android_id:
                    type: string
                  android_id_md5:
                    type: string
                  android_id_sha1:
                    type: string
                  relationship:
                    type: object
                    properties:
                      offer:
                        type: object
                        properties:
                          network_offer_id:
                            type: integer
                          network_id:
                            type: integer
                          network_tracking_domain_id:
                            type: integer
                          name:
                            type: string
                          offer_status:
                            type: string
                      geolocation:
                        type: object
                        properties:
                          country_code:
                            type: string
                          country_name:
                            type: string
                          region_code:
                            type: string
                          region_name:
                            type: string
                          city_name:
                            type: string
                          dma:
                            type: integer
                          dma_name:
                            type: string
                          carrier_name:
                            type: string
                          carrier_code:
                            type: integer
                          isp_name:
                            type: string
                          organization:
                            type: string
                          postal_code:
                            type: string
                          timezone:
                            type: string
                          is_mobile:
                            type: boolean
                          is_proxy:
                            type: boolean
                      device_information:
                        type: object
                        properties:
                          is_mobile:
                            type: boolean
                          platform_name:
                            type: string
                          os_version:
                            type: string
                          brand:
                            type: string
                          model:
                            type: string
                          is_tablet:
                            type: boolean
                          browser_name:
                            type: string
                          browser_version:
                            type: string
                          device_type:
                            type: string
                          language:
                            type: string
                          http_accept_language:
                            type: string
                          is_robot:
                            type: boolean
                          is_filter:
                            type: boolean
                      query_parameters:
                        type: object
        '404':
          description: Click not found.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: >
        The affiliate's API key generated from the Affiliate Portal. Uses the
        same X-Eflow-Api-Key header as the Network API, but the key belongs to
        the affiliate user rather than the network admin.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````