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

# Get v1projects gas executions



## OpenAPI

````yaml /openapi/platform.json get /v1/projects/{projectId}/gas-executions
openapi: 3.1.0
info:
  title: GOL Platform API
  description: >-
    Public API for GOL developer projects, credentials, owner gas policies,
    hosted gas executions, and webhooks.
  version: 0.2.0
servers:
  - url: http://localhost:4100
    description: Local development
security: []
tags:
  - name: system
  - name: authentication
  - name: projects
  - name: api-keys
  - name: audit
  - name: gas-executions
  - name: gas-policies
  - name: webhooks
paths:
  /v1/projects/{projectId}/gas-executions:
    get:
      tags:
        - gas-executions
      operationId: listGasExecutions
      parameters:
        - schema:
            anyOf:
              - type: string
                enum:
                  - test
              - type: string
                enum:
                  - live
          in: query
          name: environment
          required: false
        - schema:
            minimum: 1
            maximum: 100
            default: 30
            type: integer
          in: query
          name: limit
          required: false
        - schema:
            maxLength: 200
            type: string
          in: query
          name: cursor
          required: false
        - schema:
            pattern: ^[a-z_]{1,40}$
            type: string
          in: query
          name: state
          required: false
        - schema:
            format: uuid
            type: string
          in: path
          name: projectId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - data
                  - nextCursor
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/def-9'
                  nextCursor:
                    anyOf:
                      - type: string
                      - type: 'null'
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
        '409':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
        '429':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
        '503':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string
      security:
        - bearerAuth: []
components:
  schemas:
    def-9:
      additionalProperties: false
      type: object
      required:
        - id
        - actionId
        - mandateId
        - gasPolicyId
        - account
        - agent
        - state
        - acceptedAt
        - updatedAt
        - actionTransactionHash
        - claimTransactionHash
        - totalNetworkWei
        - collectedWei
        - golCostWei
        - disputed
      properties:
        id:
          format: uuid
          type: string
        actionId:
          type: string
        mandateId:
          type: string
        gasPolicyId:
          anyOf:
            - type: string
            - type: 'null'
        account:
          type: string
        agent:
          type: string
        state:
          type: string
        acceptedAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        actionTransactionHash:
          anyOf:
            - type: string
            - type: 'null'
        claimTransactionHash:
          anyOf:
            - type: string
            - type: 'null'
        totalNetworkWei:
          anyOf:
            - type: string
            - type: 'null'
        collectedWei:
          anyOf:
            - type: string
            - type: 'null'
        golCostWei:
          anyOf:
            - type: string
            - type: 'null'
        disputed:
          type: boolean
      title: GasExecutionSummary
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````