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

# Poll gasless job status



## OpenAPI

````yaml /gateway_fast_deposits_openapi.json get /circle-gateway/v1/gasless/jobs/{id}
openapi: 3.0.0
info:
  title: Circle Gateway Fast Deposits API
  version: 2.0.0
  description: >-
    REST API for creating quoted Circle Gateway deposit vaults, queueing gasless
    funding via ERC-3009, polling vault and job status.
servers:
  - url: https://api.eco.com
    description: Mainnet
security: []
tags:
  - name: Circle Gateway
  - name: Gasless funding
paths:
  /circle-gateway/v1/gasless/jobs/{id}:
    get:
      tags:
        - Gasless funding
      summary: Poll gasless job status
      operationId: getGaslessJob
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Job status
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/GaslessJob'
        '404':
          description: Job not found
components:
  schemas:
    GaslessJob:
      type: object
      properties:
        id:
          type: string
        status:
          $ref: '#/components/schemas/GaslessJobStatus'
        permitTxHash:
          type: string
          nullable: true
        transferTxHash:
          type: string
          nullable: true
        intentHash:
          type: string
          nullable: true
        amount:
          type: string
          nullable: true
        error:
          type: string
          nullable: true
    GaslessJobStatus:
      type: string
      enum:
        - PENDING
        - PERMIT_SENT
        - COMPLETED
        - FAILED

````