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

# Get Dedicated IP

> Get a dedicated IP detail.

<script src="/locale-bridge.js" />


## OpenAPI

````yaml /openapi.en.json GET /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}
openapi: 3.1.0
info:
  title: Code API (Public)
  version: 1.0.0
servers:
  - url: https://api.hybridbox.io
security: []
paths:
  /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}:
    get:
      tags:
        - public-accounts
        - public-dedicated-ips
      summary: Get Dedicated IP
      description: Get a dedicated IP detail.
      operationId: >-
        get_public_dedicated_ip_v1_public_accounts__account_id__dedicated_ips__dedicated_ip_id__get
      parameters:
        - in: path
          name: account_id
          required: true
          schema:
            format: uuid
            title: Account Id
            type: string
        - in: path
          name: dedicated_ip_id
          required: true
          schema:
            format: uuid
            title: Dedicated Ip Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicDedicatedIpResponse'
          description: ''
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - PublicBearerAuth: []
components:
  schemas:
    PublicDedicatedIpResponse:
      properties:
        asn:
          anyOf:
            - type: integer
            - type: 'null'
          description: Autonomous system number for the allocation
          title: Asn
        country_code:
          anyOf:
            - type: string
            - type: 'null'
          description: ISO country code for the allocation
          title: Country Code
        created_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          description: Creation timestamp
          title: Created At
        id:
          description: Dedicated IP UUID
          format: uuid
          title: Id
          type: string
        ip_addresses:
          description: Public addresses in this allocation
          items:
            $ref: '#/components/schemas/PublicDedicatedIpAddressResponse'
          title: Ip Addresses
          type: array
        name:
          description: Customer-visible dedicated IP name
          title: Name
          type: string
        status:
          description: Provisioning or lifecycle status
          title: Status
          type: string
        type:
          description: Dedicated IP allocation type
          title: Type
          type: string
        updated_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          description: Last update timestamp
          title: Updated At
      required:
        - id
        - name
        - status
        - type
      title: PublicDedicatedIpResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    PublicDedicatedIpAddressResponse:
      description: Public dedicated-IP address metadata without reputation signals.
      properties:
        fcrdns_confirmed:
          default: false
          description: Whether forward-confirmed reverse DNS passed
          title: Fcrdns Confirmed
          type: boolean
        healthy:
          anyOf:
            - type: boolean
            - type: 'null'
          description: Current health state when available
          title: Healthy
        ip:
          description: Public IP address
          title: Ip
          type: string
        rdns:
          anyOf:
            - type: string
            - type: 'null'
          description: Reverse DNS hostname when configured
          title: Rdns
      required:
        - ip
      title: PublicDedicatedIpAddressResponse
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    PublicBearerAuth:
      bearerFormat: JWT or Hybridbox Service account token
      description: >-
        Public API bearer credential sent as `Authorization: Bearer <token>`.
        Use either an OAuth access token or a Hybridbox Service account token.
      scheme: bearer
      type: http

````