OpenZeppelin Relayers API

Relayers are the core components of the OpenZeppelin Relayer API. They are responsible for executing transactions on behalf of users and providing a secure and reliable way to interact with the blockchain.

Operations 20

GET /api/v1/relayers Relayer routes implementation #
POST /api/v1/relayers Creates a new relayer. #
GET /api/v1/relayers/{relayer_id} Retrieves details of a specific relayer by ID. #
DELETE /api/v1/relayers/{relayer_id} Deletes a relayer by ID. #
PATCH /api/v1/relayers/{relayer_id} Updates a relayer's information based on the provided update request. #
GET /api/v1/relayers/{relayer_id}/balance Retrieves the balance of a specific relayer. #
POST /api/v1/relayers/{relayer_id}/rpc Performs a JSON-RPC call using the specified relayer. #
POST /api/v1/relayers/{relayer_id}/sign Signs data using the specified relayer. #
POST /api/v1/relayers/{relayer_id}/sign-transaction Signs a transaction using the specified relayer (Stellar only). #
POST /api/v1/relayers/{relayer_id}/sign-typed-data Signs typed data using the specified relayer. #
GET /api/v1/relayers/{relayer_id}/status Fetches the current status of a specific relayer. #
POST /api/v1/relayers/{relayer_id}/transactions Sends a transaction through the specified relayer. #
GET /api/v1/relayers/{relayer_id}/transactions/ Lists all transactions for a specific relayer with pagination. #
GET /api/v1/relayers/{relayer_id}/transactions/by-nonce/{nonce} Retrieves a transaction by its nonce value. #
DELETE /api/v1/relayers/{relayer_id}/transactions/pending Deletes all pending transactions for a specific relayer. #
POST /api/v1/relayers/{relayer_id}/transactions/sponsored/build Prepares a sponsored (gasless) transaction with fee payments. #
POST /api/v1/relayers/{relayer_id}/transactions/sponsored/quote Estimates fees for a sponsored (gasless) transaction. #
GET /api/v1/relayers/{relayer_id}/transactions/{transaction_id} Retrieves a specific transaction by its ID. #
PUT /api/v1/relayers/{relayer_id}/transactions/{transaction_id} Replaces a specific transaction with a new one. #
DELETE /api/v1/relayers/{relayer_id}/transactions/{transaction_id} Cancels a specific transaction by its ID. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/openzeppelin-relayers-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

openzeppelin-relayers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenZeppelin Relayer Health Relayers API
  description: OpenZeppelin Relayer API
  termsOfService: https://www.openzeppelin.com/tos
  contact:
    name: OpenZeppelin
    url: https://www.openzeppelin.com
  license:
    name: AGPL-3.0 license
    url: https://github.com/OpenZeppelin/openzeppelin-relayer/blob/main/LICENSE
  version: 1.5.0
servers:
- url: https://defender-api.openzeppelin.com/v2
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Relayers
  description: Relayers are the core components of the OpenZeppelin Relayer API. They are responsible for executing transactions on behalf of users and providing a secure and reliable way to interact with the blockchain.
paths:
  /api/v1/relayers:
    get:
      tags:
      - Relayers
      summary: Relayer routes implementation
      description: 'Note: OpenAPI documentation for these endpoints can be found in the `openapi.rs` file


        Lists all relayers with pagination support.'
      operationId: listRelayers
      parameters:
      - name: page
        in: query
        description: Page number for pagination (starts at 1)
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: 'Number of items per page (default: 10)'
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Relayer list retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_Vec_RelayerResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
    post:
      tags:
      - Relayers
      summary: Creates a new relayer.
      operationId: createRelayer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateRelayerRequest'
        required: true
      responses:
        '201':
          description: Relayer created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_RelayerResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '409':
          description: Relayer with this ID already exists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with this ID already exists
                success: false
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}:
    get:
      tags:
      - Relayers
      summary: Retrieves details of a specific relayer by ID.
      operationId: getRelayer
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Relayer details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_RelayerResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
    delete:
      tags:
      - Relayers
      summary: Deletes a relayer by ID.
      operationId: deleteRelayer
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Relayer deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
        '400':
          description: Bad Request - Cannot delete relayer with active transactions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Cannot delete relayer 'relayer_id' because it has N transaction(s). Please wait for all transactions to complete or cancel them before deleting the relayer.
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
    patch:
      tags:
      - Relayers
      summary: Updates a relayer's information based on the provided update request.
      operationId: updateRelayer
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateRelayerRequest'
        required: true
      responses:
        '200':
          description: Relayer updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_RelayerResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/balance:
    get:
      tags:
      - Relayers
      summary: Retrieves the balance of a specific relayer.
      operationId: getRelayerBalance
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Relayer balance retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_BalanceResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/rpc:
    post:
      tags:
      - Relayers
      summary: Performs a JSON-RPC call using the specified relayer.
      operationId: rpc
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      requestBody:
        description: JSON-RPC request with method and parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JsonRpcRequest_NetworkRpcRequest'
            example:
              id: 1
              jsonrpc: '2.0'
              method: feeEstimate
              params:
                fee_token: SOL
                network: solana
                transaction: base64_encoded_transaction
        required: true
      responses:
        '200':
          description: RPC method executed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonRpcResponse_NetworkRpcResult'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/sign:
    post:
      tags:
      - Relayers
      summary: Signs data using the specified relayer.
      operationId: sign
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignDataRequest'
        required: true
      responses:
        '200':
          description: Relayer signed data successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_SignDataResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/sign-transaction:
    post:
      tags:
      - Relayers
      summary: Signs a transaction using the specified relayer (Stellar only).
      operationId: signTransaction
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignTransactionRequest'
        required: true
      responses:
        '200':
          description: Transaction signed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_SignTransactionResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/sign-typed-data:
    post:
      tags:
      - Relayers
      summary: Signs typed data using the specified relayer.
      operationId: signTypedData
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignTypedDataRequest'
        required: true
      responses:
        '200':
          description: Relayer signed typed data successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_SignDataResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/status:
    get:
      tags:
      - Relayers
      summary: Fetches the current status of a specific relayer.
      operationId: getRelayerStatus
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Relayer status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_RelayerStatus'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/transactions:
    post:
      tags:
      - Relayers
      summary: Sends a transaction through the specified relayer.
      operationId: sendTransaction
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NetworkTransactionRequest'
        required: true
      responses:
        '200':
          description: Relayer transactions sent successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_TransactionResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/transactions/:
    get:
      tags:
      - Relayers
      summary: Lists all transactions for a specific relayer with pagination.
      operationId: listTransactions
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: Page number for pagination (starts at 1)
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: 'Number of items per page (default: 10)'
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Relayer transactions retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_Vec_TransactionResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Relayer with ID relayer_id not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Internal Server Error
                success: false
      security:
      - bearer_auth: []
  /api/v1/relayers/{relayer_id}/transactions/by-nonce/{nonce}:
    get:
      tags:
      - Relayers
      summary: Retrieves a transaction by its nonce value.
      operationId: getTransactionByNonce
      parameters:
      - name: relayer_id
        in: path
        description: The unique identifier of the relayer
        required: true
        schema:
          type: string
      - name: nonce
        in: path
        description: The nonce of the transaction
        required: true
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Relayer transaction retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_TransactionResponse'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Bad Request
                success: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Unauthorized
                success: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Not found
                success: false
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
              example:
                data: null
                message: Too Many Requests
                success: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_String'
 

# --- truncated at 32 KB (114 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/openzeppelin/refs/heads/main/openapi/openzeppelin-relayers-api-openapi.yml