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

# Browse Remote Catalog

> Browse the REMOTE catalog, annotated with what we've already linked.

Never mirrored into our DB: the catalog is Nextera's, and a stale copy would
be worse than a live call. `page_size` is capped — reads are rate-limited
per API key, possibly shared with the physical till.



## OpenAPI

````yaml https://api.vellaro.io/openapi.json get /api/v1/admin/nextera/catalog
openapi: 3.1.0
info:
  title: Vellaro API
  description: Vellaro 2026 — E-commerce API
  version: 0.1.0
servers:
  - url: https://api.vellaro.io
    description: Produzione
security: []
tags: []
paths:
  /api/v1/admin/nextera/catalog:
    get:
      tags:
        - admin:nextera
      summary: Browse Remote Catalog
      description: >-
        Browse the REMOTE catalog, annotated with what we've already linked.


        Never mirrored into our DB: the catalog is Nextera's, and a stale copy
        would

        be worse than a live call. `page_size` is capped — reads are
        rate-limited

        per API key, possibly shared with the physical till.
      operationId: browse_remote_catalog_api_v1_admin_nextera_catalog_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Page Size
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Search
        - name: category_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Category Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_NexteraCatalogPageOut_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_NexteraCatalogPageOut_:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/NexteraCatalogPageOut'
            - type: 'null'
        meta:
          anyOf:
            - $ref: '#/components/schemas/PaginationMeta'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
      type: object
      title: ApiResponse[NexteraCatalogPageOut]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    NexteraCatalogPageOut:
      properties:
        items:
          items:
            $ref: '#/components/schemas/NexteraCatalogItemOut'
          type: array
          title: Items
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total:
          type: integer
          title: Total
      type: object
      required:
        - items
        - page
        - page_size
        - total
      title: NexteraCatalogPageOut
    PaginationMeta:
      properties:
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total:
          type: integer
          title: Total
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - page
        - page_size
        - total
        - total_pages
      title: PaginationMeta
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    NexteraCatalogItemOut:
      properties:
        id:
          type: string
          title: Id
        code:
          anyOf:
            - type: string
            - type: 'null'
          title: Code
        sku:
          anyOf:
            - type: string
            - type: 'null'
          title: Sku
        barcode:
          anyOf:
            - type: string
            - type: 'null'
          title: Barcode
        name:
          type: string
          title: Name
        type:
          type: string
          title: Type
        unit:
          anyOf:
            - type: string
            - type: 'null'
          title: Unit
        price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Price
        vat_percent:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Vat Percent
        category_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Category Id
        category_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Category Name
        image_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Image Url
        is_active:
          type: boolean
          title: Is Active
        update_date:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Update Date
        linked:
          type: boolean
          title: Linked
          default: false
        linked_product_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Linked Product Id
        vat_allowed:
          type: boolean
          title: Vat Allowed
          default: true
        unit_known:
          type: boolean
          title: Unit Known
          default: true
      type: object
      required:
        - id
        - name
        - type
        - is_active
      title: NexteraCatalogItemOut
      description: >-
        One row of the remote catalog browser.


        `image_url` is Nextera's PRESIGNED S3 link and expires in ~1h — it is
        fine

        for the admin's preview (rendered right now), but it must never be
        persisted

        as a product image: import downloads the bytes and re-uploads them to
        our own

        storage instead.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````