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

# Count tasks shipped since an instant

> Counts the caller's tasks whose published pull request merged at or after `since`. Pull requests merged before Aether began recording merge instants are excluded: an unknown merge time cannot be placed on either side of a window boundary.



## OpenAPI

````yaml api-reference/openapi.v1.json GET /tasks/shipped-count
openapi: 3.1.0
info:
  title: Aether Public API
  version: 0.1.0
  description: >-
    The versioned, public Aether REST API. Authenticate with an `aether_`
    platform API key or a session token.
servers:
  - url: https://api.runaether.dev/v1
security:
  - bearerAuth: []
paths:
  /tasks/shipped-count:
    get:
      tags:
        - tasks
      summary: Count tasks shipped since an instant
      description: >-
        Counts the caller's tasks whose published pull request merged at or
        after `since`. Pull requests merged before Aether began recording merge
        instants are excluded: an unknown merge time cannot be placed on either
        side of a window boundary.
      operationId: getShippedTaskCount
      parameters:
        - explode: false
          in: query
          name: since
          required: true
          schema:
            minLength: 1
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShippedTaskCountResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unprocessable Entity
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
components:
  schemas:
    ShippedTaskCountResponse:
      additionalProperties: false
      properties:
        shipped_count:
          format: int64
          minimum: 0
          type: integer
      required:
        - shipped_count
      type: object
    ErrorResponse:
      additionalProperties: false
      properties:
        code:
          type: string
        error:
          minLength: 1
          type: string
      required:
        - error
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````