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

# Get

> Get detailed information about an IP policy by ID.




## OpenAPI

````yaml https://raw.githubusercontent.com/ngrok/ngrok-openapi/refs/heads/main/ngrok.yaml get /ip_policies/{id}
openapi: 3.0.0
info:
  title: ngrok OpenAPI
  version: 1.0.0
servers:
  - url: https://api.ngrok.com
security:
  - authentication: []
paths:
  /ip_policies/{id}:
    get:
      tags:
        - IPPolicies
      summary: Get
      description: |
        Get detailed information about an IP policy by ID.
      operationId: IpPoliciesGet
      parameters:
        - $ref: '#/components/parameters/ngrokVersion'
        - name: id
          description: |
            a resource identifier
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: |
            Get detailed information about an IP policy by ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IPPolicy'
components:
  parameters:
    ngrokVersion:
      name: ngrok-version
      in: header
      required: true
      schema:
        type: integer
        default: 2
  schemas:
    IPPolicy:
      type: object
      properties:
        id:
          description: |
            unique identifier for this IP policy
          type: string
        uri:
          description: |
            URI of the IP Policy API resource
          type: string
        created_at:
          description: |
            timestamp when the IP policy was created, RFC 3339 format
          type: string
        description:
          description: >
            human-readable description of the source IPs of this IP policy.
            optional, max 255 bytes.
          type: string
        metadata:
          description: >
            arbitrary user-defined machine-readable data of this IP policy.
            optional, max 4096 bytes.
          type: string
  securitySchemes:
    authentication:
      type: http
      scheme: bearer

````