Dados
GET https://instabio.click/api/data/
curl --request GET \
--url 'https://instabio.click/api/data/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://instabio.click/api/data/' \
--header 'Authorization: Bearer {api_key}' \
Parâmetros | Detalhes | Descrição |
---|---|---|
page | Opcional Integer | O número da página da qual você deseja obter os resultados. O padrão é 1 . |
results_per_page | Opcional Integer | How many results you want per page. Allowed values are: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Defaults to 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-05-09 21:29:02"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://instabio.click/api/data?&page=1",
"last": "https://instabio.click/api/data?&page=1",
"next": null,
"prev": null,
"self": "https://instabio.click/api/data?&page=1"
}
}
GET https://instabio.click/api/data/{datum_id}
curl --request GET \
--url 'https://instabio.click/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://instabio.click/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-05-09 21:29:02"
}
}
DELETE https://instabio.click/api/data/{datum_id}
curl --request DELETE \
--url 'https://instabio.click/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://instabio.click/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \