Fetch a project snapshot details based on the id

GET /projects/{project_id}/snapshots/{id}

Fetch a project snapshot details based on the id.

Path parameters

  • project_id string Required

    Project id

  • id string Required

    Resource ID

Responses

  • 200

    The Snapshot with the id

    Hide response attributes Show response attributes object
    • id string(uuid)
    • asset_id string
    • count number
    • total_amount number
    • balances array[object]
      Hide balances attributes Show balances attributes array[object]
      • account string
      • balance number(float)
  • 401

    Authorization information is missing or invalid.

  • 404

    Resource not found.

GET /projects/{project_id}/snapshots/{id}
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/projects/{project_id}/snapshots/{id}
Response examples (200)
{
  "id": "string",
  "asset_id": "string",
  "count": 42.0,
  "total_amount": 42.0,
  "balances": [
    {
      "account": "string",
      "balance": 42.0
    }
  ]
}
Response examples (200)
{
  "id": "string",
  "asset_id": "string",
  "count": 42.0,
  "total_amount": 42.0,
  "balances": [
    {
      "account": "string",
      "balance": 42.0
    }
  ]
}