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

Retrieve a single conversion by its ID. Returns the full conversion object including cost, geo-location, device information, and related offer/affiliate details.


## OpenAPI

````yaml openapi/advertiser-reporting.yaml get /advertisers/reporting/conversions/{conversionId}
openapi: 3.0.3
info:
  title: Everflow Advertiser API - Reporting
  description: >
    Reporting endpoints for the Everflow Advertiser API. These endpoints are
    accessed by advertiser users using their own API key and return data scoped
    to the authenticated advertiser's account only.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Advertiser Reporting
    description: Reporting endpoints available to advertiser users.
paths:
  /advertisers/reporting/conversions/{conversionId}:
    get:
      tags:
        - Advertiser Reporting
      summary: Get Conversion By ID
      parameters:
        - in: path
          name: conversionId
          required: true
          schema:
            type: string
          description: >-
            The unique conversion ID (UUID string, e.g.
            `ed113548268141de8b4c4ad4a1d812a7`).
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Conversion'
        '404':
          description: Conversion not found.
      security:
        - API Key: []
components:
  schemas:
    Conversion:
      type: object
      description: A single conversion record with full details.
      properties:
        conversion_id:
          type: string
          description: Unique conversion ID (UUID string).
        conversion_unix_timestamp:
          type: integer
          description: Unix timestamp of when the conversion occurred.
        cost_type:
          type: string
          description: Cost type for this conversion (e.g. cpa, cpc).
        cost:
          type: number
          description: Cost amount for this conversion.
        sale_amount:
          type: number
          description: Sale amount associated with this conversion.
        conversion_user_ip:
          type: string
          description: IP address of the converting user.
        session_user_ip:
          type: string
          description: IP address at time of the original click session.
        http_user_agent:
          type: string
          description: HTTP user agent string of the converting user.
        country:
          type: string
          description: Country of the converting user.
        region:
          type: string
          description: Region/state of the converting user.
        city:
          type: string
          description: City of the converting user.
        dma:
          type: integer
          description: Designated Market Area code.
        carrier:
          type: string
          description: Mobile carrier name.
        platform:
          type: string
          description: Operating system platform.
        os_version:
          type: string
          description: Operating system version.
        device_type:
          type: string
          description: Device type (e.g. desktop, mobile, tablet).
        browser:
          type: string
          description: Browser name.
        language:
          type: string
          description: Browser language.
        isp:
          type: string
          description: Internet service provider.
        adv1:
          type: string
          description: Advertiser sub-parameter 1.
        adv2:
          type: string
          description: Advertiser sub-parameter 2.
        adv3:
          type: string
          description: Advertiser sub-parameter 3.
        adv4:
          type: string
          description: Advertiser sub-parameter 4.
        adv5:
          type: string
          description: Advertiser sub-parameter 5.
        adv6:
          type: string
          description: Advertiser sub-parameter 6.
        adv7:
          type: string
          description: Advertiser sub-parameter 7.
        adv8:
          type: string
          description: Advertiser sub-parameter 8.
        adv9:
          type: string
          description: Advertiser sub-parameter 9.
        adv10:
          type: string
          description: Advertiser sub-parameter 10.
        transaction_id:
          type: string
          description: Click transaction ID associated with this conversion.
        is_event:
          type: boolean
          description: >-
            Whether this is a post-conversion event (true) or base conversion
            (false).
        event:
          type: string
          description: Event identifier string.
        click_unix_timestamp:
          type: integer
          description: Unix timestamp of the original click.
        currency_id:
          type: string
          description: Currency code (e.g. "USD").
        order_id:
          type: string
          description: Order ID associated with this conversion.
        brand:
          type: string
          description: Device brand/manufacturer.
        coupon_code:
          type: string
          description: Coupon code used for this conversion.
        relationship:
          type: object
          description: Related entities for this conversion.
          properties:
            offer:
              type: object
              description: The offer associated with this conversion.
              properties:
                network_offer_id:
                  type: integer
                  description: Offer ID.
                network_id:
                  type: integer
                  description: Network ID.
                name:
                  type: string
                  description: Offer name.
                offer_status:
                  type: string
                  description: Current status of the offer.
            affiliate:
              type: object
              description: The affiliate associated with this conversion.
              properties:
                network_affiliate_id:
                  type: integer
                  description: Affiliate ID.
                network_id:
                  type: integer
                  description: Network ID.
                name:
                  type: string
                  description: Affiliate name.
                account_status:
                  type: string
                  description: Affiliate account status.
            events_count:
              type: integer
              description: Number of events associated with this conversion.
            offer_url:
              type: object
              description: The offer URL associated with this conversion.
            source_id:
              type: string
              description: Source ID.
            affiliate_id:
              type: integer
              description: Affiliate ID.
            sub1:
              type: string
              description: Sub-placement value 1.
            sub2:
              type: string
              description: Sub-placement value 2.
            sub3:
              type: string
              description: Sub-placement value 3.
            sub4:
              type: string
              description: Sub-placement value 4.
            sub5:
              type: string
              description: Sub-placement value 5.
            sub6:
              type: string
              description: Sub-placement value 6.
            sub7:
              type: string
              description: Sub-placement value 7.
            sub8:
              type: string
              description: Sub-placement value 8.
            sub9:
              type: string
              description: Sub-placement value 9.
            sub10:
              type: string
              description: Sub-placement value 10.
  securitySchemes:
    API Key:
      description: >
        The advertiser's API key generated from the Advertiser Portal. Uses the
        same X-Eflow-Api-Key header as other Everflow APIs, but the key belongs
        to the advertiser user rather than the network admin.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````