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

# Get IP info

> 
**Limit: 10 requests per 1 second per IP address**

`GET /v1/ip_info`

Returns the detected IP address and location metadata for the calling client.




## OpenAPI

````yaml orderly.openapi get /v1/ip_info
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/ip_info:
    get:
      tags:
        - public
      summary: Get IP info
      description: >

        **Limit: 10 requests per 1 second per IP address**


        `GET /v1/ip_info`


        Returns the detected IP address and location metadata for the calling
        client.
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetIpInfoResponse'
      deprecated: false
components:
  schemas:
    GetIpInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              properties:
                city:
                  description: Detected city for the calling IP address.
                  type: string
                  example: Toronto
                ip:
                  description: Detected public IP address of the calling client.
                  type: string
                  example: 192.192.192.0
                checked:
                  type: boolean
                  example: false
                region:
                  description: Detected region or country for the calling IP address.
                  type: string
                  example: Canada
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````