# PublishedPort


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "description": "PublishedPort reports external reachability for one sandbox port.",
  "properties": {
    "hostIp": {
      "description": "host_ip is the local host bind address when relevant.",
      "type": "string"
    },
    "hostPort": {
      "description": "host_port is the local host port when relevant.",
      "type": "integer"
    },
    "protocol": {
      "$ref": "#/components/schemas/Protocol",
      "description": "protocol is the published protocol."
    },
    "sandboxPort": {
      "description": "sandbox_port is the port inside the sandbox.",
      "type": "integer"
    },
    "url": {
      "description": "url is the required externally reachable address, including host-local addresses.",
      "type": "string"
    }
  },
  "title": "PublishedPort",
  "type": "object"
}
```



