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

# List canonical brief artifacts

> Paginated list of brief artifacts — the exact validated AdCP get_products requests this storefront received, content-addressed by sha-256 digest and stored post-redaction. Summaries only; fetch one artifact for the request payload. Page with `?skip=` and `?take=`.



## OpenAPI

````yaml /v2/storefront-api-v2.yaml get /brief-artifacts
openapi: 3.0.0
info:
  title: Scope3 Storefront API
  version: 2.0.0
  description: |-
    REST API for partners to manage storefronts, inventory sources, and billing.

    ## Authentication

    All endpoints require a Bearer token in the Authorization header:
    ```
    Authorization: Bearer your-api-key
    ```

    ## Base URL

    `https://api.interchange.io/api/v2/storefront`

    ## For AI Agents

    AI agents can use the MCP endpoint at `/mcp/v2/storefront` with three tools:
    - `initialize`: Start an MCP session
    - `api_call`: Make REST API calls
    - `ask_about_capability`: Learn about API features
servers:
  - url: https://api.interchange.io/api/v2/storefront
    description: Production server
security: []
tags:
  - name: Account
    description: Account management, service tokens, and preferences
  - name: Storefront
    description: Manage storefront and inventory sources
  - name: Storefront Agents
    description: List and manage registered sales, signals, and outcomes agents
  - name: Storefront Activity
    description: Audit log of configuration and inventory changes on the storefront
  - name: Storefront Billing
    description: Payout bank details and billing configuration for storefronts
  - name: AI Usage
    description: Storefront AI token usage visibility by model
  - name: MCP
    description: Model Context Protocol endpoints
paths:
  /brief-artifacts:
    get:
      tags:
        - Storefront
      summary: List canonical brief artifacts
      description: >-
        Paginated list of brief artifacts — the exact validated AdCP
        get_products requests this storefront received, content-addressed by
        sha-256 digest and stored post-redaction. Summaries only; fetch one
        artifact for the request payload. Page with `?skip=` and `?take=`.
      operationId: listBriefArtifacts
      parameters:
        - in: query
          name: skip
          schema:
            description: Number of rows to skip (offset pagination).
            example: 0
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
          description: Number of rows to skip (offset pagination).
        - in: query
          name: take
          schema:
            description: Number of rows to return per page (1–100).
            example: 25
            default: 25
            type: integer
            minimum: 1
            maximum: 100
          description: Number of rows to return per page (1–100).
      responses:
        '200':
          description: List canonical brief artifacts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BriefArtifactListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    BriefArtifactListResponse:
      description: Brief artifacts for a storefront, newest first.
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/BriefArtifactSummary'
        meta:
          $ref: '#/components/schemas/ExchangeArtifactPaginationMeta'
      required:
        - data
        - meta
      additionalProperties: false
    ErrorResponse:
      description: Standard error response
      type: object
      properties:
        data:
          type: string
          nullable: true
          enum:
            - null
        error:
          $ref: '#/components/schemas/ApiError'
      required:
        - data
        - error
      additionalProperties: false
    BriefArtifactSummary:
      description: Brief artifact without the request payload (list view).
      type: object
      properties:
        id:
          type: string
        storefrontId:
          type: string
        buyerCustomerId:
          nullable: true
          type: integer
          minimum: -9007199254740991
          maximum: 9007199254740991
        source:
          description: Capture surface (`live` = the AdCP get_products surface).
          type: string
        buyingMode:
          type: string
        adcpMajorVersion:
          nullable: true
          type: integer
          minimum: -9007199254740991
          maximum: 9007199254740991
        schemaVersion:
          type: string
        redactionManifest:
          $ref: '#/components/schemas/ExchangeArtifactRedactionManifest'
        digest:
          description: >-
            sha-256 hex over the canonical (sorted-key) JSON of the redacted
            request — the content address.
          type: string
        byteSize:
          type: integer
          minimum: -9007199254740991
          maximum: 9007199254740991
        complete:
          description: >-
            False when the payload exceeded the size limit and only the envelope
            metadata was retained.
          type: boolean
        createdAt:
          type: string
      required:
        - id
        - storefrontId
        - buyerCustomerId
        - source
        - buyingMode
        - adcpMajorVersion
        - schemaVersion
        - redactionManifest
        - digest
        - byteSize
        - complete
        - createdAt
      additionalProperties: false
    ExchangeArtifactPaginationMeta:
      description: Offset pagination envelope shared by the list endpoints.
      type: object
      properties:
        pagination:
          type: object
          properties:
            skip:
              type: integer
              minimum: 0
              maximum: 9007199254740991
            take:
              type: integer
              maximum: 9007199254740991
              minimum: 1
            total:
              type: integer
              minimum: 0
              maximum: 9007199254740991
            hasMore:
              type: boolean
          required:
            - skip
            - take
            - total
            - hasMore
          additionalProperties: false
      required:
        - pagination
      additionalProperties: false
    ApiError:
      description: Structured error object
      type: object
      properties:
        code:
          description: Machine-readable error code
          type: string
        message:
          description: Human-readable error message
          type: string
        field:
          description: Field path associated with the error
          type: string
        details:
          description: Additional error context
          type: object
          additionalProperties: {}
      required:
        - code
        - message
      additionalProperties: false
    ExchangeArtifactRedactionManifest:
      description: Discloses exactly what was removed or dropped from the stored payload.
      type: object
      properties:
        redactedPaths:
          description: >-
            JSON paths removed from the payload before storage (secret-bearing
            keys).
          type: array
          items:
            type: string
        truncated:
          description: >-
            Present when a payload exceeded its size limit and was dropped (the
            row remains with complete=false).
          type: array
          items:
            type: object
            properties:
              field:
                type: string
              reason:
                type: string
              originalByteSize:
                type: integer
                minimum: -9007199254740991
                maximum: 9007199254740991
            required:
              - field
              - reason
              - originalByteSize
            additionalProperties: false
      required:
        - redactedPaths
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or access token

````