

# GET: Get Attributes of a Router Input
<a name="set-up-router-inputs-get-attributes"></a>

Get the attributes of the specified input on the specified router.

## HTTP Request and Response
<a name="set-up-router-inputs-get-attributes-http-request-response"></a>

### Request URL
<a name="set-up-router-inputs-get-attributes-http-request-response-url"></a>

```
GET http://<Conductor IP address>/routers/<ID of router>/inputs/<ID of input>
```

### Call Header
<a name="set-up-router-inputs-get-attributes-http-request-response-call-header"></a>
+ Accept: Set to `application/xml`.

If you are implementing user authentication, you must also include three authorization headers; see [Header Content for User Authentication](header-content-user.md).

### Response
<a name="set-up-router-inputs-get-attributes-http-request-response-response"></a>

The response is XML content consisting of one `input` element, with the same elements as the response for [GET: Get Router Attributes](set-up-routers-get-router-attributes.md).

## Example
<a name="set-up-router-inputs-get-attributes-example"></a>

This request gets the attributes for the input that has the ID 3. The input belongs to the router with the ID 4.

```
GET http://198.51.100.0/routers/4/inputs/3
------------------------------------------
Content-type:application/vnd.elemental+xml;version=3.3.0
------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<input href="/routers/4/inputs/3" product="AWS Elemental Conductor Live" version="3.3.nnnnn">
  <id>3</id>
  <name>Input 1</name>
  <router_id>4</router_id>
  <input_number>1</input_number>
  <input_number_end nil="true"/>
  <quad>false</quad>
</input>
```