# Projects

## GET projects/:id

The request returns the parameters of the project with id passed in the query.

Reference information about the resource:

|     |     |
| --- | --- |
| **API Endpoint** | https://www.diggernaut.com/api/projects/:id |
| **Response Format** | JSON |
| **Access Level** | User |
| **Limits** | Yes |

- [Example of request with CURL](/content/dev/api-projects-get-projects-id.html#request/index.html)
- [Response](/content/dev/api-projects-get-projects-id.html#response/index.html)

```http
curl -v -H "Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b" https://www.diggernaut.com/api/projects/1
```

```http
HTTP/1.0 200 OK
Date: Fri, 19 Aug 2016 15:51:21 GMT
Vary: Accept, Accept-Language, Cookie
X-Frame-Options: SAMEORIGIN
Content-Type: application/json
Content-Language: en
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
{
    "id": 1,
    "name": "Airlines",
    "description": "Airlines chart data"
}
```

[Next](/content/dev/api-projects-put-projects-id.html)
