> ## 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 1



## OpenAPI

````yaml /openapi/platform.json get /v1/projects/{projectId}/gas-executions/{executionId}
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/{executionId}:
    get:
      tags:
        - gas-executions
      operationId: getGasExecution
      parameters:
        - schema:
            anyOf:
              - type: string
                enum:
                  - test
              - type: string
                enum:
                  - live
          in: query
          name: environment
          required: false
        - schema:
            format: uuid
            type: string
          in: path
          name: projectId
          required: true
        - schema:
            format: uuid
            type: string
          in: path
          name: executionId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - id
                  - projectId
                  - contractProjectId
                  - environment
                  - chainId
                  - account
                  - agent
                  - core
                  - accountProfileId
                  - installEpoch
                  - mandateId
                  - actionId
                  - gasPolicyId
                  - payer
                  - state
                  - quote
                  - transactionHashes
                  - broadcasts
                  - receipt
                  - claimReceipt
                  - ledger
                  - disputes
                properties:
                  id:
                    format: uuid
                    type: string
                  projectId:
                    format: uuid
                    type: string
                  contractProjectId:
                    type: string
                  environment:
                    anyOf:
                      - type: string
                        enum:
                          - test
                      - type: string
                        enum:
                          - live
                  chainId:
                    type: integer
                  account:
                    type: string
                  agent:
                    type: string
                  core:
                    type: string
                  accountProfileId:
                    type: string
                  installEpoch:
                    type: string
                  mandateId:
                    type: string
                  actionId:
                    type: string
                  gasPolicyId:
                    anyOf:
                      - type: string
                      - type: 'null'
                  payer:
                    anyOf:
                      - type: string
                        enum:
                          - owner_reimbursement
                      - type: string
                        enum:
                          - developer
                  state:
                    type: string
                  quote:
                    additionalProperties: false
                    type: object
                    required:
                      - acceptedOwnerMaximumWei
                      - maximumNetworkWei
                      - maximumGolExposureWei
                      - expiresAt
                      - formulaVersion
                      - chargeableOutcomesMask
                    properties:
                      acceptedOwnerMaximumWei:
                        type: string
                      maximumNetworkWei:
                        type: string
                      maximumGolExposureWei:
                        type: string
                      expiresAt:
                        format: date-time
                        type: string
                      formulaVersion:
                        type: integer
                      chargeableOutcomesMask:
                        type: integer
                  transactionHashes:
                    type: array
                    items:
                      type: string
                  broadcasts:
                    type: array
                    items:
                      additionalProperties: false
                      type: object
                      required:
                        - transactionHash
                        - providerId
                        - outcome
                        - observedAt
                      properties:
                        transactionHash:
                          type: string
                        providerId:
                          type: string
                        outcome:
                          anyOf:
                            - type: string
                              enum:
                                - accepted
                            - type: string
                              enum:
                                - indeterminate
                        observedAt:
                          format: date-time
                          type: string
                  receipt:
                    anyOf:
                      - type: 'null'
                      - additionalProperties: false
                        type: object
                        required:
                          - transactionHash
                          - blockHash
                          - blockNumber
                          - finalizedBlockNumber
                          - outcome
                          - gasUsed
                          - effectiveGasPrice
                          - executionWei
                          - l1DataWei
                          - operatorWei
                          - totalNetworkWei
                          - eligibleOwnerWei
                          - golLossWei
                          - developerCostWei
                        properties:
                          transactionHash:
                            type: string
                          blockHash:
                            type: string
                          blockNumber:
                            type: string
                          finalizedBlockNumber:
                            type: string
                          outcome:
                            anyOf:
                              - type: string
                                enum:
                                  - success
                              - type: string
                                enum:
                                  - refusal
                              - type: string
                                enum:
                                  - revert
                          gasUsed:
                            type: string
                          effectiveGasPrice:
                            type: string
                          executionWei:
                            type: string
                          l1DataWei:
                            type: string
                          operatorWei:
                            type: string
                          totalNetworkWei:
                            type: string
                          eligibleOwnerWei:
                            type: string
                          golLossWei:
                            type: string
                          developerCostWei:
                            type: string
                  claimReceipt:
                    anyOf:
                      - type: 'null'
                      - additionalProperties: false
                        type: object
                        required:
                          - claimTransactionHash
                          - blockHash
                          - blockNumber
                          - finalizedBlockNumber
                          - collectedWei
                          - golClaimNetworkCostWei
                          - status
                        properties:
                          claimTransactionHash:
                            type: string
                          blockHash:
                            type: string
                          blockNumber:
                            type: string
                          finalizedBlockNumber:
                            type: string
                          collectedWei:
                            type: string
                          golClaimNetworkCostWei:
                            type: string
                          status:
                            anyOf:
                              - type: string
                                enum:
                                  - collected
                              - type: string
                                enum:
                                  - reverted
                  ledger:
                    type: array
                    items:
                      additionalProperties: false
                      type: object
                      required:
                        - category
                        - amountWei
                        - transactionHash
                      properties:
                        category:
                          type: string
                        amountWei:
                          type: string
                        transactionHash:
                          anyOf:
                            - type: string
                            - type: 'null'
                  disputes:
                    type: array
                    items:
                      additionalProperties: false
                      type: object
                      required:
                        - id
                        - status
                        - reason
                        - openedAt
                        - resolvedAt
                        - resolution
                      properties:
                        id:
                          format: uuid
                          type: string
                        status:
                          anyOf:
                            - type: string
                              enum:
                                - open
                            - type: string
                              enum:
                                - resolved
                        reason:
                          type: string
                        openedAt:
                          format: date-time
                          type: string
                        resolvedAt:
                          anyOf:
                            - format: date-time
                              type: string
                            - type: 'null'
                        resolution:
                          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:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````