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

# supportedEntryPoints

> Learn how to use the supportedEntryPoints JSON-RPC method.

## Contextualizing `supportEntryPoints`

* `supportEntryPoints` returns a list of EntryPoint addresses supported by the Particle Bundler. It takes no parameters.

<Note>At the moment, only `0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789` is supported due to it being the flagship EntryPoint contract for ERC-4337.</Note>

***

## Query example

```json JSON theme={null}
{
  "chainId": 80001,
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_supportedEntryPoints",
  "params": []
}
```


## OpenAPI

````yaml openapi-bundler POST /#eth_supportedEntryPoints
openapi: 3.0.0
info:
  title: Particle Network Bundler
  version: 1.0.0
servers:
  - url: https://bundler.particle.network
security: []
paths:
  /#eth_supportedEntryPoints:
    post:
      summary: supportedEntryPoints
      operationId: supportedEntryPoints
      requestBody:
        description: Request to retrieve supported entry points for Ethereum.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupportedEntryPointsRequest'
      responses:
        '200':
          description: Successful response with supported entry points.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SupportedEntryPointsResponse'
components:
  schemas:
    SupportedEntryPointsRequest:
      allOf:
        - $ref: '#/components/schemas/RPCRequest'
        - type: object
          properties:
            method:
              enum:
                - eth_supportedEntryPoints
            params:
              type: array
              maxItems: 0
              description: No parameters are needed for this request.
    SupportedEntryPointsResponse:
      allOf:
        - $ref: '#/components/schemas/RPCResponse'
        - type: object
          properties:
            result:
              type: array
              description: List of supported entry points.
              items:
                type: string
                example: 0xEntryPoint1
    RPCRequest:
      type: object
      required:
        - jsonrpc
        - id
        - method
        - params
        - chainId
      properties:
        jsonrpc:
          type: string
          default: '2.0'
          description: Version of the JSON-RPC protocol, should be 2.0.
          example: '2.0'
        id:
          type: integer
          default: 1
          description: The request identifier.
          example: 1
        chainId:
          type: integer
          description: The chain ID.
          example: 80001
        method:
          type: string
          description: API method being called.
        params:
          type: array
          description: Parameters for the API method call.
    RPCResponse:
      type: object
      required:
        - jsonrpc
        - id
        - result
        - chainId
      properties:
        jsonrpc:
          type: string
          default: '2.0'
          description: Version of the JSON-RPC protocol, should be 2.0.
          example: '2.0'
        id:
          type: integer
          default: 1
          description: The request identifier.
          example: 1
        chainId:
          type: integer
          description: The chain ID.
          example: 80001
        result:
          anyOf:
            - $ref: '#/components/schemas/AnyValue'
    AnyValue:
      anyOf:
        - type: string
        - type: number
        - type: integer
        - type: boolean
        - type: object
        - type: array
          items: {}

````