---
title: "Get Address Details"
url: "https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598/operations/AddressController_find"
---

> Full API specification: https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598.md

# Get Address Details

`GET` `/tenants/addresses/{id}`

Operation ID: `AddressController_find`

Retrieves detailed information about a specific network address including its type, associated protocols, and linked gateways.

## Path parameters

- `id` (string, required) - The unique identifier of the address

## Responses

- `200` - Successfully retrieved the address
- `401` - Unauthorized - Invalid or missing authentication token
- `403` - Forbidden - Insufficient permissions. Requires OWNER, ADMIN, AUDITOR, or SUPPORT role.
- `404` - Address not found with the provided ID

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Cipherscale API
  version: "1.0"
servers:
  - url: https://public-api.cipherscale.com/qa
    description: Cipherscale Public API Server
paths:
  /tenants/addresses/{id}:
    get:
      operationId: AddressController_find
      summary: Get Address Details
      description: Retrieves detailed information about a specific network address
        including its type, associated protocols, and linked gateways.
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier of the address
          schema:
            type: string
      responses:
        "200":
          description: Successfully retrieved the address
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/AddressDto"
        "401":
          description: Unauthorized - Invalid or missing authentication token
        "403":
          description: Forbidden - Insufficient permissions. Requires OWNER, ADMIN,
            AUDITOR, or SUPPORT role.
        "404":
          description: Address not found with the provided ID
      tags:
        - Addresses
      security:
        - ApiKeyAuth: []
security:
  - ApiKeyAuth: []
components:
  schemas:
    AddressDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        address:
          type: string
        isIp:
          type: boolean
        type:
          enum:
            - PRIVATE
            - SAAS
            - INTERNET
          type: string
        protocols:
          type: array
          items:
            $ref: "#/components/schemas/ProtocolDto"
      required:
        - id
        - address
        - isIp
        - type
        - protocols
    ProtocolDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        networkProtocols:
          type: array
          items:
            $ref: "#/components/schemas/NetworkProtocolDto"
        type:
          enum:
            - ALL
            - PREDEFINED
            - CUSTOM
          type: string
      required:
        - id
        - name
        - networkProtocols
        - type
    NetworkProtocolDto:
      type: object
      properties:
        protocol:
          type: string
          enum:
            - TCP
            - UDP
            - ICMP
        port:
          type: string
      required:
        - protocol
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
