API

Logger Export (API)

Exporting raw logger data via the Tauro Cloud API.

Logger data can be exported programmatically via the Tauro Cloud API.


Endpoint

GET /cerestags/{idType}/{id}/logger/export

Interactive documentation:

https://api.dev.taurocollar.com/docs#tag/cerestag/GET/cerestags/{idType}/{id}/logger/export


Tag Identifier

The endpoint requires two path parameters:

  • idType
  • id

Supported identifier types:

  • vid
  • infuseId
  • esn
  • bluetoothMacAddress

Example:

/cerestags/vid/123456/logger/export


Making the Request

All requests must include your API key in the header: X-API-Key


Option 1 – Using curl

curl -X GET \
  "https://api.dev.taurocollar.com/cerestags/{idType}/{id}/logger/export" \
  -H "X-API-Key: <your-api-key>" \
  --output logger.bin

Option 2 – Using the Documentation Interface

Navigate to https://api.dev.taurocollar.com/docs#tag/cerestag/GET/cerestags/{idType}/{id}/logger/export

  1. Set the identifier type and value.
  2. Include your API key in the X-API-Key header.
  3. Send the request.
  4. Click Download in the response panel.

The response content type is:

application/octet-stream

The downloaded file is a raw .bin file identical to the file exported via the Dashboard.