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

# List Collection Releases



## OpenAPI

````yaml /openapi.json get /v1/workspaces/{workspaceId}/collections/{collectionId}/releases
openapi: 3.1.0
info:
  title: Specurate API
  description: ''
  version: 1.0.0
  contact: {}
servers:
  - url: https://app.specurate.com/api
    description: API Server
security: []
tags: []
paths:
  /v1/workspaces/{workspaceId}/collections/{collectionId}/releases:
    get:
      tags:
        - Collection Releases
      summary: List Collection Releases
      operationId: CollectionReleasesController_list_v1
      parameters:
        - name: workspaceId
          required: true
          in: path
          schema:
            type: string
            pattern: ^[1-9]\d*$
        - name: collectionId
          required: true
          in: path
          schema:
            type: string
            pattern: ^[1-9]\d*$
        - name: cursor
          required: false
          in: query
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            maximum: 100
            exclusiveMinimum: 0
            type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionReleaseListResponseDto'
      security:
        - bearer: []
components:
  schemas:
    CollectionReleaseListResponseDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/CollectionReleaseDto'
        nextCursor:
          type: string
          nullable: true
        hasMore:
          type: boolean
      required:
        - items
        - nextCursor
        - hasMore
    CollectionReleaseDto:
      type: object
      properties:
        id:
          type: string
        number:
          type: number
          description: The version. Render as "v3".
        label:
          type: string
          nullable: true
        releaseType:
          nullable: true
          type: object
          allOf:
            - $ref: '#/components/schemas/ReleaseTypeSummaryDto'
        notes:
          type: string
          nullable: true
        releaseDate:
          type: string
          description: Date-only, `YYYY-MM-DD`. Never format this as an instant.
        releasedAt:
          type: string
          description: ISO instant.
        actorUserId:
          type: string
          nullable: true
        actorName:
          type: string
          nullable: true
        familyCount:
          type: number
          description: Catalogue products this release covered.
        entryCount:
          type: number
          description: Lines the release published.
        collectionId:
          type: string
          nullable: true
          description: Null for an ownerless release, which outlived its collection.
      required:
        - id
        - number
        - label
        - releaseType
        - notes
        - releaseDate
        - releasedAt
        - actorUserId
        - actorName
        - familyCount
        - entryCount
        - collectionId
    ReleaseTypeSummaryDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
      required:
        - id
        - name
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````