> ## 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 Object

Retrieve A single NetBox object by its ID.

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                  |
  | --------- | ---------------------------------------------------------------------------- |
  | Object ID | The ID of your NetBox object. Can be obtained via the 'List Objects' action. |
</div>

## Example Output

```json theme={"dark"}
{
	"id": 2954,
	"url": "http://netbox/api/ipam/ip-addresses/2954/",
	"family": {
		"value": 4,
		"label": "IPv4"
	},
	"address": "192.168.0.42/26",
	"vrf": null,
	"tenant": null,
	"status": {
		"value": "active",
		"label": "Active"
	},
	"role": null,
	"assigned_object_type": "dcim.interface",
	"assigned_object_id": 114771,
	"assigned_object": {
		"id": 114771,
		"url": "http://netbox/api/dcim/interfaces/114771/",
		"device": {
			"id": 2230,
			"url": "http://netbox/api/dcim/devices/2230/",
			"name": "router1",
			"display_name": "router1"
		},
		"name": "et-0/1/2",
		"cable": null,
		"connection_status": null
	},
	"nat_inside": null,
	"nat_outside": null,
	"dns_name": "",
	"description": "Example IP address",
	"tags": [],
	"custom_fields": {},
	"created": "2020-08-04",
	"last_updated": "2020-08-04T14:12:39.666885Z"
}
```

## Workflow Library Example

[Get Object with Netbox and Send Results Via Email](https://library.blinkops.com/workflows/get-object-with-netbox-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-object-with-netbox-and-send-results-via-email/canvas" />
</div>
