Dados

GET https://virt.cards/api/data/
curl --request GET \
--url 'https://virt.cards/api/data/' \
--header 'Authorization: Bearer {api_key}' \
Parâmetros Detalhes Descrição
page Opcional Inteiro O número da página da qual você quer resultados. Padrão é 1.
results_per_page Opcional Inteiro Quantos resultados por página você deseja. Valores permitidos: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Padrão é 25.
{
    "data": [
        {
            "id": 1,
            "biolink_block_id": 1,
            "link_id": 1,
            "project_id": 1,
            "type": "mail",
            "data": {
                "email": "[email protected]",
                "name": "John doe"
            },
            "datetime": "2025-09-13 17:53:31",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://virt.cards/api/data?page=1",
        "last": "https://virt.cards/api/data?page=1",
        "next": null,
        "prev": null,
        "self": "https://virt.cards/api/data?page=1"
    }
}
GET https://virt.cards/api/data/{datum_id}
curl --request GET \
--url 'https://virt.cards/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "biolink_block_id": 1,
        "link_id": 1,
        "project_id": 1,
        "type": "mail",
        "data": {
            "email": "[email protected]",
            "name": "John doe"
        },
        "datetime": "2025-09-13 17:53:31",
    }
}
DELETE https://virt.cards/api/data/{datum_id}
curl --request DELETE \
--url 'https://virt.cards/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \