Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

AICPA SOC for Service Organizations logoAICPA SOC for Service Organizations logo

SOC 2® Type 1 report

Audited by Prescient Assurance

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
2 Grattan Court East, Dublin, D02 VX86, Ireland
Switch to light modeSwitch to dark mode
APIs / Storage / Amazonaws / Amazon Elastic Block Store
Amazon Elastic Block Store logo

AWS Amazon Elastic Block Store

Browse all Amazonaws APIs
61
AI ReadinessAI-Aware (B-)61/100
See full scorecard
Agent-ready OpenAPI document · curated by JenticStorageObject Storagehmac6 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Create EBS snapshots, write and read blocks directly, and compare snapshots block-by-block for incremental backup and disaster recovery workflows.

Use for: Create a new EBS snapshot ready for block uploads, Upload a block into a pending snapshot with checksum, Read a specific block from an existing snapshot, List the changed blocks between two snapshots

Not supported: Does not handle volume creation, attachment to EC2 instances, or DLM scheduling - use for block-level snapshot read, write, and diff only.

Jentic publishes the only available OpenAPI specification for the Amazon EBS direct APIs, keeping them validated and agent-ready. The EBS direct APIs let backup vendors and applications create EBS snapshots, write data blocks directly into a snapshot, read snapshot blocks, and compute the differences between two snapshots. They are designed for incremental backup and disaster recovery flows that need block-level access without spinning up an EC2 instance to mount a volume. Use them when an agent needs to ingest snapshot data, restore from on-premises backups into the cloud, or efficiently track changed blocks between snapshots.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Amazon Elastic Block Store to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Amazon Elastic Block Store, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Famazonaws.com%2Faws-ebs" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Famazonaws.com%2Faws-ebs" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Amazon Elastic Block Store API.

Create new EBS snapshots in pending state with StartSnapshot ready to receive block uploads

Upload data blocks into a pending snapshot via PutSnapshotBlock with SHA-256 checksum verification

Finalise a snapshot once all blocks are written using CompleteSnapshot with the changed-block count

Read individual blocks from an existing snapshot with GetSnapshotBlock for restore workflows

List the blocks present in a snapshot with ListSnapshotBlocks and stream their indexes and tokens

Compute incremental differences between two snapshots through ListChangedBlocks for efficient transfer

Use Cases

Patterns agents use Amazon Elastic Block Store API for, with concrete tasks.

★ Incremental Backup of Customer Volumes

An ISV backup product can use ListChangedBlocks between two consecutive snapshots to identify exactly which blocks changed and upload only those blocks to its backup target. The result is an incremental backup that scales with the rate of change rather than total volume size, dramatically reducing transfer time and cost.

Call ListChangedBlocks with FirstSnapshotId and SecondSnapshotId, then GetSnapshotBlock for each ChangedBlock entry to fetch the new bytes.

Cloud Restore from On-Premises Backup

When restoring from an on-premises backup, an agent can call StartSnapshot to create a pending snapshot, PutSnapshotBlock for each data block from the backup target, and CompleteSnapshot to seal the snapshot. The completed snapshot can then be turned into an EBS volume in EC2 without ever staging the data through an EC2 instance.

Call StartSnapshot with VolumeSize, then PutSnapshotBlock per block with SHA-256 checksum, then CompleteSnapshot with the ChangedBlocksCount once all blocks are written.

Targeted Block Reads for Forensic Analysis

Forensic and indexing tools can read specific snapshot blocks via GetSnapshotBlock without restoring the entire volume. ListSnapshotBlocks returns the block indexes and tokens, then GetSnapshotBlock pulls only the blocks of interest, keeping data egress and processing bounded.

Call ListSnapshotBlocks for the target snapshot and StartingBlockIndex, then GetSnapshotBlock for each BlockIndex of interest.

Agent-Driven Snapshot Workflows

An AI agent connected via Jentic can drive a backup or restore workflow by composing the StartSnapshot, PutSnapshotBlock, CompleteSnapshot, and GetSnapshotBlock calls correctly, and reacting to checksum or throttling errors. Jentic returns the matching EBS direct API operation and schema so the agent has structured input contracts and can orchestrate block-level transfers.

Search Jentic for 'create an EBS snapshot from blocks', load StartSnapshot, then iterate PutSnapshotBlock for each block and finish with CompleteSnapshot.

Key Endpoints

6 endpoints — jentic publishes the only available openapi specification for the amazon ebs direct apis, keeping them validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/snapshots

Start a new snapshot in pending state

PUT

/snapshots/{snapshotId}/blocks/{blockIndex}#x-amz-Data-Length&x-amz-Checksum&x-amz-Checksum-Algorithm

Upload a block into a snapshot

POST

/snapshots/completion/{snapshotId}#x-amz-ChangedBlocksCount

Complete an in-progress snapshot

GET

/snapshots/{snapshotId}/blocks/{blockIndex}#blockToken

Read a specific block

GET

/snapshots/{snapshotId}/blocks

List blocks in a snapshot

GET

/snapshots/{secondSnapshotId}/changedblocks

List changed blocks between two snapshots

POST

/snapshots

Start a new snapshot in pending state

PUT

/snapshots/{snapshotId}/blocks/{blockIndex}#x-amz-Data-Length&x-amz-Checksum&x-amz-Checksum-Algorithm

Upload a block into a snapshot

POST

/snapshots/completion/{snapshotId}#x-amz-ChangedBlocksCount

Complete an in-progress snapshot

GET

/snapshots/{snapshotId}/blocks/{blockIndex}#blockToken

Read a specific block

GET

/snapshots/{snapshotId}/blocks

List blocks in a snapshot

GET

/snapshots/{secondSnapshotId}/changedblocks

List changed blocks between two snapshots

Jentic AI Readiness Score

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

A

Amazon Elastic Block Store

- AI-Aware (B-)
61/100
99
Foundational Compliance
63
Developer Experience & Jentic Compatibility
38
AI-Readiness & Agent Experience
94
Agent Usability
50
Security
100
AI Discoverability
Powered by JenticScoring Framework 1.0.0 | Scoring Engine 0.4.0
Show dimension breakdown
99

Foundational Compliance

Base layer of spec validity and structural soundness.

Grade: A+Signals: 4
98%

Lint Results

Aggregated quality score from linter diagnostics, weighted by severity.

100%

Resolution Completeness

Percentage of `$ref` references that resolve successfully.

100%

Specification Validity

Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).

100%

Structural Integrity

Structural correctness score based on schema issues using logarithmic dampening.

63

Developer Experience & Jentic Compatibility

Clarity, completeness, and ingestion readiness for developers and tooling.

Grade: B-Signals: 4
0%

Example Density

How richly the API is illustrated with examples.

100%

Example Validity

Percentage of examples that conform to their schemas.

50%

Response Coverage

Percentage of operations with complete response definitions (success, client error, server error).

100%

Tooling Readiness

Health of API ingestion, bundling, and resolution within Jentic pipelines.

38

AI-Readiness & Agent Experience

Semantic breadth, depth, and agent comprehension for AI systems.

Grade: FSignals: 4
50%

Description Coverage

Coverage of descriptions across API elements.

0%

Error Standardization

Coverage of RFC 9457 Problem Details for error responses.

100%

OperationId Quality

Coverage, uniqueness, and casing consistency of operationIds for AI inference.

0%

Summary Coverage

Coverage of summaries across operations/tags/info.

94

Agent Usability

Functional utility, complexity comfort, and AI orchestration readiness.

Grade: A+Signals: 1
94%

Complexity Comfort

Agent comfort level based on API operational and structural complexity.

50

Security

Trust, risk posture, and security compliance.

Grade: C-Signals: 1
50%

Authentication Strength

Average quality of security schemes based on authentication method strength (weakest link for OAuth2).

100

AI Discoverability

Findability, semantic richness, and reasoning readiness.

Grade: A+Signals: 1
100%

Descriptive Richness

Clarity and depth of descriptions across API elements.

View full reportHow the score is calculatedMore about the dimensions

Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

Score your own APIScoring CLI agent skill
npx @jentic/api-scorecard-cli score <openapi-url>

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Wiring the Amazon EBS direct APIs by hand means building SigV4 request signing, resolving the regional ebs.{region}.amazonaws.com host, and handling block checksums plus AWS retries yourself. Through Jentic you install once, import the EBS direct APIs from the API Directory, store the AWS access keys once, and your agent calls it.

Permission scoping

The EBS direct APIs put the snapshot id in the URL path (/snapshots/{snapshotId}/blocks/{blockIndex}), so a rule can pin your agent to one snapshot: it can read blocks and list changed blocks for that snapshot and nothing else. You choose the operations it may call, so writing blocks or completing a snapshot is not included unless you add it.

Credential isolation

Your AWS access keys for the EBS direct APIs are stored once, encrypted, by your own Jentic One instance and injected at execution time when the request is signed. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Agents search Jentic by intent such as 'start an EBS snapshot' or 'list changed blocks between snapshots', and Jentic returns the matching EBS direct API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Amazon Elastic Compute Cloud

→

Owns volume creation, attachment, and snapshot management beyond block-level operations.

Choose EC2 when the agent needs to create a volume from a snapshot or attach it to an instance.

Complementary

Amazon Data Lifecycle Manager

→

Schedules automated snapshots that the EBS direct API can later read or diff.

Choose DLM when the agent needs to define snapshot schedules rather than read or write blocks directly.

Alternative

AWS Backup

→

Higher-level backup service that wraps EBS snapshots alongside other services.

Choose AWS Backup when the workload needs unified, policy-driven backup across services rather than block-level access.

FAQs

Specific to using Amazon Elastic Block Store API through Jentic.

Why is there no official OpenAPI spec for Amazon Elastic Block Store?

AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Amazon Elastic Block Store via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Amazon EBS direct API use?

The EBS direct APIs use AWS Signature Version 4 (HMAC) signing with an AWS access key ID and secret access key. Through Jentic, those credentials live encrypted in your Jentic One instance and are injected into signed requests at execution time, so the agent never sees the raw secret access key.

Can I detect which blocks changed between two snapshots?

Yes. Call ListChangedBlocks on the second snapshot with FirstSnapshotId set to the earlier one. The response lists every BlockIndex that differs and includes block tokens for direct fetching via GetSnapshotBlock.

What are the rate limits for the Amazon EBS direct API?

The EBS direct APIs share standard AWS service quotas, which are managed per account and region rather than published as fixed per-second limits in the spec. PutSnapshotBlock and GetSnapshotBlock have throughput-oriented limits documented in AWS user guides; ThrottlingException responses should trigger backoff.

How do I write a snapshot from on-prem data through Jentic?

Search Jentic for 'start an EBS snapshot', load StartSnapshot, execute it with VolumeSize, then iterate PutSnapshotBlock for each block with the SHA-256 checksum and finally CompleteSnapshot. Run pip install jentic and use the async pattern.

Can I attach a snapshot to an EC2 instance with this API?

No. This API works at the snapshot block level only. To create a volume from a completed snapshot or attach it to an instance, use the Amazon EC2 API operations such as CreateVolume and AttachVolume.

Can I limit what my agent is allowed to do with the Amazon EBS direct API?

Yes. Because you run Jentic One yourself, your own rules decide which EBS operations and AWS credentials the agent may use. The EBS direct APIs put the snapshot id in the URL path, so a rule can pin the agent to a single snapshot and grant only read operations like GetSnapshotBlock and ListChangedBlocks. Write operations such as PutSnapshotBlock and CompleteSnapshot stay off limits unless you explicitly add them.

GET STARTED

Start building with Amazon Elastic Block Store API

Explore with Jentic One
View OpenAPI Document