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

# Get Public IP Address

Gets the specified public IP address in a specified resource group.

<Note>
  External Documentation

  To learn more, visit the [Azure documentation](https://learn.microsoft.com/en-us/rest/api/virtualnetwork/public-ip-addresses/get?view=rest-virtualnetwork-2023-05-01\&tabs=HTTP).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter              | Description                                                                                                                                              |
  | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Public IP Address Name | The name of the public IP address.                                                                                                                       |
  | Resource Group Name    | The name of the resource group.                                                                                                                          |
  | Subscription ID        | The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                   |
  | --------- | ----------------------------- |
  | Expand    | Expands referenced resources. |
</div>

## Example Output

```json theme={"dark"}
{
	"name": "test-ip",
	"id": "/subscriptions/sub-id/resourceGroups/group/providers/Microsoft.Network/publicIPAddresses/test-ip",
	"etag": "W/\"c4704d0a-8dad-4cc8-887d-deee45cf7fa7\"",
	"location": "eastus",
	"zones": [
		"1"
	],
	"properties": {
		"provisioningState": "Succeeded",
		"resourceGuid": "65fc72d9-013e-4681-a0f8-c6515b361d8b",
		"ipAddress": "1.1.1.1",
		"publicIPAddressVersion": "IPv4",
		"publicIPAllocationMethod": "Static",
		"idleTimeoutInMinutes": 4,
		"ipTags": [],
		"ipConfiguration": {
			"id": "/subscriptions/sub-id/resourceGroups/group/providers/Microsoft.Network/networkInterfaces/interface/ipConfigurations/ipconfig1"
		}
	},
	"type": "Microsoft.Network/publicIPAddresses",
	"sku": {
		"name": "Standard",
		"tier": "Regional"
	}
}
```

## Workflow Library Example

[Get Public Ip Address with Azure and Send Results Via Email](https://library.blinkops.com/workflows/get-public-ip-address-with-azure-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-public-ip-address-with-azure-and-send-results-via-email/canvas" />
</div>
