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

# List creator Market SkillBot versions

> Returns version history for a Market SkillBot owned by the authenticated creator. The response includes status, review, pricing, source template, and hash metadata, but does not expose workflow execution specs.



## OpenAPI

````yaml /developer-reference/loomloom-api/openapi.json get /loom/v1/creators/me/marketListings/{marketListing}/versions
openapi: 3.1.0
info:
  title: loomloom
  description: HTTP API for executing and managing loomloom AI work through CogFoundry.
  version: market-v1
  summary: ''
  contact: {}
servers:
  - url: https://loomloom.cogfoundry.ai
    description: CogFoundry production
security:
  - bearer: []
tags:
  - name: System
  - name: Creator Earnings
  - name: Creators
  - name: Creator Reviews
  - name: Input Assets
  - name: Market Listings
  - name: Market Runs
  - name: Models
  - name: Official Templates
  - name: Assets
  - name: Users
  - name: Runs
  - name: User Templates
paths:
  /loom/v1/creators/me/marketListings/{marketListing}/versions:
    get:
      tags:
        - Creators
      summary: List creator Market SkillBot versions
      description: >-
        Returns version history for a Market SkillBot owned by the authenticated
        creator. The response includes status, review, pricing, source template,
        and hash metadata, but does not expose workflow execution specs.
      parameters:
        - name: marketListing
          in: path
          description: Market listing ID
          required: true
          example: ''
          schema:
            type: string
        - name: pageSize
          in: query
          description: Page size. Default 100, max 500.
          required: false
          example: ''
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.marketListingVersionsResponse'
          headers: {}
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
      deprecated: false
      security:
        - bearer: []
components:
  schemas:
    server.marketListingVersionsResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/server.marketListingVersionResponse'
    server.errorResponse:
      type: object
      properties:
        error:
          type: string
    server.marketListingVersionResponse:
      type: object
      properties:
        createdAtUnix:
          type: integer
        creatorUserId:
          type: integer
        definitionHash:
          type: string
        executionAvailabilityStatus:
          type: string
        executionBlockReason:
          type: string
        executionSnapshotHash:
          type: string
        hashAlgorithmVersion:
          type: string
        id:
          type: string
        listingId:
          type: string
        packageHash:
          type: string
        packageSchemaVersion:
          type: string
        pricingRuleVersion:
          type: string
        pricingSnapshotHash:
          type: string
        publicContentSnapshotHash:
          type: string
        reviewPolicyVersion:
          type: string
        reviewReason:
          type: string
        reviewStatus:
          type: string
        reviewedAtUnix:
          type: integer
        saleStatus:
          type: string
        sourceTemplateId:
          type: string
        sourceTemplateVersionId:
          type: string
        status:
          type: string
        taskFixedFeeT:
          type: integer
        templateId:
          type: string
        templateVersionId:
          type: string
        versionNumber:
          type: integer
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````