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

# List all static inputs

> Returns all static inputs for a project.



## OpenAPI

````yaml GET /projects/{project_id}/static_inputs
openapi: 3.1.0
info:
  title: Mangrove - API
  version: 1.1.0
servers:
  - url: https://app.gomangrove.com/api/v1
security:
  - sec0: []
paths:
  /projects/{project_id}/static_inputs:
    get:
      summary: List static inputs
      description: Returns all static inputs for a project.
      operationId: list-static-inputs
      parameters:
        - name: project_id
          in: path
          schema:
            type: string
          required: true
        - name: page
          in: query
          schema:
            type: integer
            format: int32
            default: 1
        - name: page_size
          in: query
          schema:
            type: integer
            format: int32
            default: 10
        - name: sort
          in: query
          description: >-
            Comma-separated list of fields to sort by. Prefix with - for
            descending. Available fields: id, name, slug, value_type,
            created_at, updated_at
          schema:
            type: string
            example: name,-created_at
        - name: filter[name][contains]
          in: query
          description: Filter by name (case-insensitive partial match)
          schema:
            type: string
        - name: filter[slug][eq]
          in: query
          description: Filter by exact slug
          schema:
            type: string
        - name: filter[value_type][eq]
          in: query
          description: Filter by value type
          schema:
            type: string
            enum:
              - number
              - string
              - boolean
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    data:
                      - id: 1
                        name: Baseline Emission Factor
                        slug: baseline-emission-factor
                        description: Default baseline emission factor
                        value: '0.85'
                        value_type: number
                        unit: tCO2e/MWh
                        created_at: '2025-01-15T10:00:00.000Z'
                        updated_at: '2025-01-15T10:00:00.000Z'
                    info:
                      items: 1
                      page_size: 10
                      total_items: 1
                      current_page: 1
                      next_page: null
                      previous_page: null
                      total_pages: 1
                      sort: []
                      filter: []
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        name:
                          type: string
                        slug:
                          type: string
                        description:
                          type: string
                          nullable: true
                        value:
                          type: string
                        value_type:
                          type: string
                          enum:
                            - number
                            - string
                            - boolean
                        unit:
                          type: string
                          nullable: true
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                  info:
                    type: object
                    properties:
                      items:
                        type: integer
                      page_size:
                        type: integer
                      total_items:
                        type: integer
                      current_page:
                        type: integer
                      next_page:
                        type: integer
                        nullable: true
                      previous_page:
                        type: integer
                        nullable: true
                      total_pages:
                        type: integer
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: ''

````