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



## OpenAPI

````yaml /openapi/platform.json get /v1/projects/{projectId}/gas-configuration
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-configuration:
    get:
      tags:
        - gas-policies
      operationId: getGasConfiguration
      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
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - environment
                  - chainId
                  - core
                  - gasRouter
                  - asset
                  - capabilityDigest
                  - gasRecipient
                  - attester
                  - relayer
                  - profiles
                  - limits
                properties:
                  environment:
                    type: string
                    enum:
                      - test
                  chainId:
                    type: number
                    enum:
                      - 84532
                  core:
                    pattern: ^0x[0-9a-fA-F]{40}$
                    type: string
                  gasRouter:
                    pattern: ^0x[0-9a-fA-F]{40}$
                    type: string
                  asset:
                    type: object
                    required:
                      - address
                      - symbol
                      - decimals
                    properties:
                      address:
                        pattern: ^0x[0-9a-fA-F]{40}$
                        type: string
                      symbol:
                        type: string
                        enum:
                          - USDC
                      decimals:
                        type: number
                        enum:
                          - 6
                  capabilityDigest:
                    pattern: ^0x[0-9a-fA-F]{64}$
                    type: string
                  gasRecipient:
                    pattern: ^0x[0-9a-fA-F]{40}$
                    type: string
                  attester:
                    pattern: ^0x[0-9a-fA-F]{40}$
                    type: string
                  relayer:
                    pattern: ^0x[0-9a-fA-F]{40}$
                    type: string
                  profiles:
                    type: array
                    items:
                      type: object
                      required:
                        - family
                        - profileId
                        - implementation
                        - label
                      properties:
                        family:
                          anyOf:
                            - type: string
                              enum:
                                - safe
                            - type: string
                              enum:
                                - nexus
                            - type: string
                              enum:
                                - kernel
                            - type: string
                              enum:
                                - alchemy
                        profileId:
                          pattern: ^0x[0-9a-fA-F]{64}$
                          type: string
                        implementation:
                          pattern: ^0x[0-9a-fA-F]{40}$
                          type: string
                        label:
                          type: string
                  limits:
                    type: object
                    required:
                      - recommendedPerActionWei
                      - maxPerActionWei
                      - maxTotalWei
                    properties:
                      recommendedPerActionWei:
                        pattern: ^(0|[1-9][0-9]{0,77})$
                        type: string
                      maxPerActionWei:
                        pattern: ^(0|[1-9][0-9]{0,77})$
                        type: string
                      maxTotalWei:
                        pattern: ^(0|[1-9][0-9]{0,77})$
                        type: string
        '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

````