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

> Returns full details for a single conversion by its ID.




## OpenAPI

````yaml openapi/affiliate-reporting.yaml get /affiliates/reporting/conversions/{conversionId}
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/conversions/{conversionId}:
    get:
      tags:
        - Affiliate Reporting
      summary: Get Conversion By ID
      description: |
        Returns full details for a single conversion by its ID.
      parameters:
        - name: conversionId
          in: path
          required: true
          description: The numeric ID of the conversion.
          schema:
            type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  conversion_id:
                    type: string
                    description: Unique conversion identifier.
                  transaction_id:
                    type: string
                  conversion_unix_timestamp:
                    type: integer
                  click_unix_timestamp:
                    type: integer
                  revenue:
                    type: number
                  sale_amount:
                    type: number
                  event:
                    type: string
                    description: Event name (for post-conversion events).
                  is_event:
                    type: boolean
                  source_id:
                    type: string
                  revenue_type:
                    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
                  adv1:
                    type: string
                  adv2:
                    type: string
                  adv3:
                    type: string
                  adv4:
                    type: string
                  adv5:
                    type: string
                  adv6:
                    type: string
                  adv7:
                    type: string
                  adv8:
                    type: string
                  adv9:
                    type: string
                  adv10:
                    type: string
                  session_user_ip:
                    type: string
                  conversion_user_ip:
                    type: string
                  country:
                    type: string
                  region:
                    type: string
                  city:
                    type: string
                  dma:
                    type: integer
                  carrier:
                    type: string
                  isp:
                    type: string
                  platform:
                    type: string
                  os_version:
                    type: string
                  device_type:
                    type: string
                  brand:
                    type: string
                  browser:
                    type: string
                  language:
                    type: string
                  http_user_agent:
                    type: string
                  referer:
                    type: string
                  app_id:
                    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
                  currency_id:
                    type: string
                  is_view_through:
                    type: boolean
                  order_id:
                    type: string
                  coupon_code:
                    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
                      events_count:
                        type: integer
                        description: >-
                          Number of post-conversion events associated with this
                          conversion.
        '404':
          description: Conversion 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

````