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

Retrieve a single creative by its ID. Returns the full creative object including resource details, offer relationship, and affiliate targeting settings.


## OpenAPI

````yaml openapi/creatives.yaml get /networks/creatives/{creativeId}
openapi: 3.0.3
info:
  title: Everflow Network API - Creatives
  description: >
    Endpoints for managing creatives in the Everflow network. For more on
    creative types, see the [Creatives
    guide](https://helpdesk.everflow.io/customer/simple-creatives-images-links-videos-others).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Creatives
paths:
  /networks/creatives/{creativeId}:
    get:
      tags:
        - Creatives
      summary: Get Creative by ID
      parameters:
        - in: path
          name: creativeId
          required: true
          schema:
            type: integer
          description: The creative ID.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Creative'
      security:
        - API Key: []
components:
  schemas:
    Creative:
      type: object
      properties:
        network_offer_creative_id:
          type: integer
          description: Unique creative ID.
        network_id:
          type: integer
          description: Network ID.
        network_offer_id:
          type: integer
          description: Associated offer ID.
        name:
          type: string
          description: Name of the creative.
        creative_type:
          type: string
          enum:
            - image
            - html
            - thumbnail
            - email
            - archive
            - video
            - text
            - link
          description: >
            Type of the creative. Can be one of: image, html, thumbnail, email,
            archive, video, text, or link.
        is_private:
          type: boolean
          description: Whether the creative is accessible by all affiliates.
        creative_status:
          type: string
          enum:
            - active
            - paused
            - deleted
          description: Status of the creative. Can be active, paused, or deleted.
        resource_url:
          type: string
          description: URL to the creative resource file.
        html_code:
          type: string
          description: >-
            HTML content of the creative. Present when creative_type is `html`,
            `email`, or `link`.
        width:
          type: integer
          description: Width of the creative in pixels.
        height:
          type: integer
          description: Height of the creative in pixels.
        email_from:
          type: string
          description: Content of the From field of the email.
        email_subject:
          type: string
          description: Content of the Subject field of the email.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
        additional_offer_ids:
          type: array
          items:
            type: integer
          nullable: true
          description: IDs of all additional offers linked to this creative.
        is_apply_specific_affiliates:
          type: boolean
          description: Whether the creative is restricted to specific affiliates.
        email_subject_lines:
          type: string
          description: Additional email subject lines for the creative.
        email_from_lines:
          type: string
          description: Additional email from lines for the creative.
        relationship:
          type: object
          properties:
            offer:
              type: object
              properties:
                network_offer_id:
                  type: integer
                network_id:
                  type: integer
                network_advertiser_id:
                  type: integer
                network_offer_group_id:
                  type: integer
                name:
                  type: string
                offer_status:
                  type: string
                network_tracking_domain_id:
                  type: integer
                visibility:
                  type: string
                currency_id:
                  type: string
            resource_asset:
              type: object
              properties:
                network_asset_id:
                  type: integer
                content_type:
                  type: string
                filename:
                  type: string
                url:
                  type: string
                file_size:
                  type: integer
                image_width:
                  type: integer
                image_height:
                  type: integer
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````