# Get

## Get

<mark style="color:blue;">`GET`</mark> `https://api.suble.io/projects/:projectId/network/:networkId`

Retrieve information about a network

#### Path Parameters

| Name      | Type   | Description               |
| --------- | ------ | ------------------------- |
| projectId | string | Unique id for the project |
| networkId | string | Unique id for the network |

#### Headers

| Name          | Type   | Description               |
| ------------- | ------ | ------------------------- |
| Authorization | string | User token or project key |

{% tabs %}
{% tab title="200 " %}

```
{
        "_id": ObjectId,
        "project": ObjectId,
        "name": String,
        "vlan": Number,
        "ip": String, // Example: 10.0.0.1
        "subnet": String, // Example '255.255.255.0'
        "default": Boolean
}
```

{% endtab %}

{% tab title="400 " %}

```
{
    "error": String
}
```

{% endtab %}
{% endtabs %}
