# Get all Card(s)

### Get all digital cards

Retrieve all digital cards associated with this space.

<mark style="color:blue;">`GET`</mark> `/v1/spaces/{SPACE_UUID}/cards`

#### Path Parameters

| Name                                          | Type   | Description |
| --------------------------------------------- | ------ | ----------- |
| SPACE\_UUID<mark style="color:red;">\*</mark> | String |             |

#### Query Parameters

| Name | Type   | Description |
| ---- | ------ | ----------- |
| with | string | `emails`    |

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

```json
{
    "data": [
        {
            "uuid": "ZHJ8l7XXXXXX",
            "avatar": {
                "uuid": null,
                "src": "https://cdn.becard.me/default/card_v1.jpg"
            },
            "username": "jon-XXX",
            "display_name": "Jon Doe",
            "position": "CTO",
            "public": true,
            "connected_cards": 0,
            "connects": 0,
            "subscriptions": null,
            "created_at": "2024-02-06T17:03:14.000000Z",
            "updated_at": "2024-02-06T17:03:14.000000Z"
        },
    ],
    "links": {
        "first": "http://localhost:8000/v1/spaces/XXXXXX/cards?page=1",
        "last": "http://localhost:8000/v1/spaces/XXXXXX/cards?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost:8000/v1/spaces/XXXXXX/cards?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost:8000/v1/spaces/XXXXXX/cards",
        "per_page": 10,
        "to": 1,
        "total": 1
    }
}
```

{% endtab %}
{% endtabs %}

### Get a single digital card

To learn how to query a single digital card, please visit the '[Digital Business Cards](https://docs.becard.me/rest-api/digital-business-cards/digital-business-cards/get-all-card-s)' tab.
