Samples

Stamp Endpoint

Curl Examples

Stamping Without a Collection

  1. Stamping a file:

curl -X POST https://app.vbase.com/api/v1/stamps \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "[email protected]" \
-F "store_stamped_file=true" \
-F "idempotent=true" \
-F "idempotency_window=3600"
  1. Stamping inline data:

curl -X POST https://app.vbase.com/api/v1/stamps \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "data='1212121212'" \
-F "store_stamped_file=true" \
-F "idempotent=true" \
-F "idempotency_window=3600"
  1. Stamping a Content Identifier (CID) without revealing data:

Stamping to a Collection Identified by a Name

  1. Stamping a file:

  1. Stamping inline data:

  1. Stamping a Content Identifier (CID) without revealing data:

Stamping to a Collection Identified by a Content Identifier (Collection CID)

  1. Stamping a file:

  1. Stamping a Content Identifier (CID) without revealing data:

Verify Endpoint

Curl Examples

  1. Verifying CIDs:

Python Examples

Last updated