GET
/
transactions
/
eoa
/
gas-abstraction
Query gas abstraction fees
curl --request GET \
  --url https://grid.squads.xyz/api/grid/v1/transactions/eoa/gas-abstraction \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "fees": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "custom_identifier": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "confirmation_status": "<string>",
        "tx_fee_lamports": "<string>",
        "tx_fee_in_currency": "<string>",
        "rent_fee_lamports": "<string>",
        "rent_fee_in_currency": "<string>",
        "currency": "USDC",
        "price_per_sol": "<string>",
        "signature": "<string>",
        "event_timestamp": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ],
    "pagination": {
      "offset": 1,
      "limit": 500,
      "total_count": 1,
      "has_more": true
    }
  },
  "metadata": {
    "request_id": "123e4567-e89b-12d3-a456-426614174000",
    "timestamp": "2023-07-15T14:30:00.000Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication with Bearer token. Include the API key in the Authorization header as 'Bearer YOUR_API_KEY'

Query Parameters

customIdentifier
string
required

Custom identifier to filter by

Minimum length: 1
start_date
string<date-time>

Start timestamp (ISO 8601 format)

end_date
string<date-time>

End timestamp (ISO 8601 format)

offset
integer
default:0

Number of records to skip

Required range: x >= 0
limit
integer
default:50

Number of items per page (max 1000)

Required range: 1 <= x <= 1000

Response

200
application/json

Gas abstraction fees retrieved successfully

The response is of type object.