# Get a project card

From **GitHub v3 REST API**.

`GET /projects/columns/cards/{card_id}`

Get a project card

## Parameters

### `card_id`

- Location: path
- Required: true
- Type: `integer`

card_id parameter

## Responses

### `200`

Response

### `application/json`

- Type: `object`

Project cards represent a scope of work.

```json
{
  "archived": false,
  "column_url": "https://api.github.com/projects/columns/367",
  "content_url": "https://api.github.com/repos/api-playground/projects-test/issues/3",
  "created_at": "2016-09-05T14:21:06Z",
  "creator": {
    "avatar_url": "https://github.com/images/error/octocat_happy.gif",
    "events_url": "https://api.github.com/users/octocat/events{/privacy}",
    "followers_url": "https://api.github.com/users/octocat/followers",
    "following_url": "https://api.github.com/users/octocat/following{/other_user}",
    "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
    "gravatar_id": "",
    "html_url": "https://github.com/octocat",
    "id": 1,
    "login": "octocat",
    "node_id": "MDQ6VXNlcjE=",
    "organizations_url": "https://api.github.com/users/octocat/orgs",
    "received_events_url": "https://api.github.com/users/octocat/received_events",
    "repos_url": "https://api.github.com/users/octocat/repos",
    "site_admin": false,
    "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
    "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
    "type": "User",
    "url": "https://api.github.com/users/octocat"
  },
  "id": 1478,
  "node_id": "MDExOlByb2plY3RDYXJkMTQ3OA==",
  "note": "Add payload for delete Project column",
  "project_url": "https://api.github.com/projects/120",
  "updated_at": "2016-09-05T14:20:22Z",
  "url": "https://api.github.com/projects/columns/cards/1478"
}
```

```json
{"description":"Project cards represent a scope of work.","properties":{"archived":{"description":"Whether or not the card is archived","example":false,"type":"boolean"},"column_name":{"type":"string"},"column_url":{"example":"https://api.github.com/projects/columns/367","format":"uri","type":"string"},"content_url":{"example":"https://api.github.com/repos/api-playground/projects-test/issues/3","format":"uri","type":"string"},"created_at":{"example":"2016-09-05T14:21:06Z","format":"date-time","type":"string"},"creator":{"$ref":"#/components/schemas/nullable-simple-user"},"id":{"description":"The project card's ID","example":42,"type":"integer"},"node_id":{"example":"MDExOlByb2plY3RDYXJkMTQ3OA==","type":"string"},"note":{"example":"Add payload for delete Project column","nullable":true,"type":"string"},"project_id":{"type":"string"},"project_url":{"example":"https://api.github.com/projects/120","format":"uri","type":"string"},"updated_at":{"example":"2016-09-05T14:20:22Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/projects/columns/cards/1478","format":"uri","type":"string"}},"required":["id","node_id","note","url","column_url","project_url","creator","created_at","updated_at"],"title":"Project Card","type":"object"}
```

### `304`

Not modified

### `401`

Requires authentication

### `application/json`

- Type: `object`

Basic Error

```json
{"description":"Basic Error","properties":{"documentation_url":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"},"url":{"type":"string"}},"title":"Basic Error","type":"object"}
```

### `403`

Forbidden

### `application/json`

- Type: `object`

Basic Error

```json
{"description":"Basic Error","properties":{"documentation_url":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"},"url":{"type":"string"}},"title":"Basic Error","type":"object"}
```

### `404`

Resource not found

### `application/json`

- Type: `object`

Basic Error

```json
{"description":"Basic Error","properties":{"documentation_url":{"type":"string"},"message":{"type":"string"},"status":{"type":"string"},"url":{"type":"string"}},"title":"Basic Error","type":"object"}
```

## Request examples

### cURL

```shell
curl --request GET \
  --url {protocol}://{hostname}/api/v3/projects/columns/cards/{card_id}
```
