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

# List cell specifications for the current organization

> List cell specifications with pagination and optional filtering.

When ``project_id`` is supplied, returns only specs linked to that project.
Without ``project_id``, returns all specs for the current organization.

Filter parameters support Supabase filter operators:
- Text fields (name, form_factor, anode, cathode, created_by_email): Use
  ``ilike.%value%`` for partial match
- Date fields (created_at, updated_at): Use ``gte.value``, ``lte.value``,
  etc.
- Date range: Use created_at_gt and created_at_lt for between queries



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /cell_specifications
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /cell_specifications:
    get:
      tags:
        - Cell Specifications
      summary: List cell specifications for the current organization
      description: >-
        List cell specifications with pagination and optional filtering.


        When ``project_id`` is supplied, returns only specs linked to that
        project.

        Without ``project_id``, returns all specs for the current organization.


        Filter parameters support Supabase filter operators:

        - Text fields (name, form_factor, anode, cathode, created_by_email): Use
          ``ilike.%value%`` for partial match
        - Date fields (created_at, updated_at): Use ``gte.value``,
        ``lte.value``,
          etc.
        - Date range: Use created_at_gt and created_at_lt for between queries
      operationId: list_cell_specifications_cell_specifications_get
      parameters:
        - name: full
          in: query
          required: false
          schema:
            type: boolean
            default: false
            title: Full
        - name: project_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Project Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 1000
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            title: Offset
            default: 0
        - name: name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Name
        - name: form_factor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Form Factor
        - name: anode
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Anode
        - name: cathode
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cathode
        - name: created_by_email
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created By Email
        - name: created_at
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created At
        - name: created_at_gt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created At Gt
        - name: created_at_lt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created At Lt
        - name: updated_at
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Updated At
        - name: updated_at_gt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Updated At Gt
        - name: updated_at_lt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Updated At Lt
        - name: order_by
          in: query
          required: false
          schema:
            enum:
              - name
              - created_at
              - updated_at
            type: string
            default: created_at
            title: Order By
        - name: order
          in: query
          required: false
          schema:
            enum:
              - asc
              - desc
            type: string
            default: desc
            title: Order
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````