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

# List orders

> List orders imported from the specified shop.



## OpenAPI

````yaml /openapi.json get /shops/{shopId}/orders
openapi: 3.0.1
info:
  title: Connector
  version: 80f7edc, 2026-01-23T12:01:00Z
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: bundles
    description: Manage product bundles
  - name: carriers
    description: Get carrier information
  - name: contacts
    description: Manage contact information
  - name: countries
    description: Get country information
  - name: currencies
    description: Get currency information
  - name: customerInquiries
    description: Manage customer inquiries
  - name: dashboards
    description: Access dashboard data
  - name: files
    description: Manage file uploads and downloads
  - name: fulfillmentPlans
    description: Manage fulfillment plans
  - name: inbounds
    description: Manage inbound shipments
  - name: items
    description: Monitor and manage inventory items
  - name: languages
    description: Get language information
  - name: notifications
    description: Manage notifications
  - name: orders
    description: Create and manage fulfillment orders
  - name: ping
    description: Health check endpoint
  - name: returnApp
    description: Manage return applications
  - name: returnLinks
    description: Manage return links
  - name: returns
    description: Manage returns
  - name: sellers
    description: Get seller information
  - name: shipments
    description: Book and manage shipments
  - name: shippingServiceGroups
    description: Get shipping service groups
  - name: shopOrders
    description: Manage shop orders
  - name: shops
    description: Manage shops
  - name: status
    description: Get system status
  - name: storedAddresses
    description: Manage stored addresses
  - name: subscriptionPackages
    description: Manage subscription packages
  - name: subscriptions
    description: Manage webhook subscriptions
  - name: track
    description: Track shipments
  - name: transports
    description: Manage transport services
  - name: users
    description: Manage users
  - name: warehouses
    description: Get warehouse information
paths:
  /shops/{shopId}/orders:
    get:
      tags:
        - shopOrders
      summary: List orders
      description: List orders imported from the specified shop.
      operationId: shopOrdersGet
      parameters:
        - name: shopId
          in: path
          required: true
          schema:
            type: integer
            format: int64
          description: The unique identifier for a connected shop or integration.
        - name: pageToken
          in: query
          description: >-
            Specifies which page to load. If not specified, the first page is
            loaded.
          schema:
            type: string
      responses:
        '200':
          description: Returns the ShopOrdersGetResult matching the specified identifier.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShopOrdersGetResult'
        '400':
          description: >-
            Bad request - the request payload is invalid, missing required
            fields, or contains invalid data.
        '401':
          description: >-
            Unauthorized - authentication credentials are missing, invalid, or
            expired.
        '404':
          description: >-
            Not found - the requested resource does not exist or is not
            accessible.
        '500':
          description: Internal server error - an unexpected error occurred on the server.
components:
  schemas:
    ShopOrdersGetResult:
      type: object
      properties:
        orders:
          type: array
          items:
            $ref: '#/components/schemas/ShopOrderSummary'
          description: Order identifier or information
        nextPageToken:
          type: string
          description: >-
            Use this token to load the next page. A value of null indicates that
            there is no next page.
      description: >-
        Shop orders information. Contains list of orders imported from a
        specific shop with pagination.
    ShopOrderSummary:
      type: object
      properties:
        orderIdentifier:
          type: string
          description: The unique identifier for the orderentifier
        orderReference:
          type: string
          description: Reference number or identifier for the order
        orderStatus:
          type: string
          enum:
            - PENDING
            - PROCESSING
            - COMPLETED
            - CANCELLED
          description: The current status of the order
        orderStatusIdentifier:
          type: string
          description: The unique identifier for the orderstatusentifier
        orderStatusName:
          type: string
          description: The name of the order status
        orderDate:
          type: string
          format: date-time
          description: The order date date
        currency:
          $ref: '#/components/schemas/Currency'
        deliveryAddress:
          $ref: '#/components/schemas/ShopAddressDetail'
        invoiceAddress:
          $ref: '#/components/schemas/ShopAddressDetail'
        positions:
          type: array
          items:
            $ref: '#/components/schemas/ShopPositionDetail'
          description: Array of position items
      description: Summary information for shoporder
    Currency:
      type: object
      properties:
        currencyCode:
          type: string
          description: Currency code
        defaultFractionDigits:
          type: integer
          format: int32
          description: The default fraction digits numeric value
        numericCode:
          type: integer
          format: int32
          description: Code or identifier
        displayName:
          type: string
          description: The name of the display
        symbol:
          type: string
          description: The symbol value
        numericCodeAsString:
          type: string
          description: Code or identifier
      description: Currency information
    ShopAddressDetail:
      type: object
      properties:
        name1:
          type: string
          description: The name of the item
        name2:
          type: string
          description: The name of the item
        company:
          type: string
          description: Company name
        address1:
          type: string
          description: Address information
        address2:
          type: string
          description: Address information
        address3:
          type: string
          description: Address information
        zip:
          type: string
          description: ZIP or postal code
        city:
          type: string
          description: City name
        state:
          type: string
          description: State or province
        country:
          type: string
          description: Country code or name
        phone:
          type: string
          description: Phone number
        email:
          type: string
          description: Email address
      description: Detailed information for shopaddress
    ShopPositionDetail:
      type: object
      properties:
        positionIdentifier:
          type: string
          description: The unique identifier for the positionentifier
        productIdentifier:
          type: string
          description: The unique identifier for the productentifier
        variantIdentifier:
          type: string
          description: The unique identifier for the variantentifier
        name:
          type: string
          description: The name of the item
        sku:
          type: string
          description: Stock Keeping Unit (SKU) identifier
        quantity:
          type: integer
          format: int32
          description: Quantity or amount
        unitWeight:
          type: number
          description: Weight value
        unitNetPrice:
          type: number
          description: Price value
        unitGrossPrice:
          type: number
          description: Price value
      description: Detailed information for shopposition

````