> ## Documentation Index
> Fetch the complete documentation index at: https://docs-kfhye.zochil.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get marketplace banner detail



## OpenAPI

````yaml docs/api-reference/marketplace-monitoring.yaml get /marketplace-banners/detail/{id}
openapi: 3.0.3
info:
  title: Zochil Marketplace Monitoring API
  description: >
    Zochil platform marketplace monitoring API for marketplace administration.


    ## Authentication


    All endpoints require authentication via the `access-token` header obtained
    through login.

    Some endpoints may also require `merchant-id` header for merchant-specific
    operations.
  version: 1.0.0
  contact:
    name: Zochil Support
    email: info@zochil.mn
  license:
    name: Proprietary
servers:
  - url: https://api.zochil.io/v3/monitoring
    description: API server
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Marketplace admin authentication
  - name: Marketplace Admins
    description: Marketplace administrator management
  - name: Marketplaces
    description: Marketplace management and configuration
  - name: Categories
    description: Product category management
  - name: Products
    description: Product catalog management
  - name: Orders
    description: Order processing and management
  - name: Merchants
    description: Merchant account management
  - name: Users
    description: User account management
  - name: Banners
    description: Marketing banner management
  - name: Campaigns
    description: Marketing campaign management
  - name: Subscriptions
    description: Marketplace subscription management
  - name: Menu Categories
    description: Main menu category management
  - name: Notifications
    description: Notification management
  - name: Shipments
    description: Shipment and logistics management
  - name: Shipment Invoices
    description: Shipment invoice management
  - name: Preorder Admin Users
    description: Preorder admin user management with PIN authentication
  - name: Reporting
    description: Reporting and analytics
  - name: Profile
    description: Admin profile management
paths:
  /marketplace-banners/detail/{id}:
    get:
      tags:
        - Banners
      summary: Get marketplace banner detail
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Marketplace banner details
components:
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token

````