Skip to main content
POST
/
v1
/
assets
/
archive-asset
curl -X POST 'https://crypto-api.yativo.com/api/v1/assets/archive-asset' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "asset_id": "ast_01HX9KZMB3F7VNQP8R2WDGT4EA"
  }'
{
  "status": "success",
  "message": "Asset archived successfully",
  "data": {
    "asset_id": "ast_01HX9KZMB3F7VNQP8R2WDGT4EA",
    "status": "archived",
    "archived_at": "2026-03-26T12:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
asset_id
string
required
The ID of the asset to archive.
curl -X POST 'https://crypto-api.yativo.com/api/v1/assets/archive-asset' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "asset_id": "ast_01HX9KZMB3F7VNQP8R2WDGT4EA"
  }'
{
  "status": "success",
  "message": "Asset archived successfully",
  "data": {
    "asset_id": "ast_01HX9KZMB3F7VNQP8R2WDGT4EA",
    "status": "archived",
    "archived_at": "2026-03-26T12:00:00Z"
  }
}