Wove Agentic Access
Wove exposes 85 API operations that an AI agent could call, of which 49 are state-changing ‘acting’ operations. This is a recommended x-agentic-access execution contract — the scope, audience, consequence tier, short-lived token constraints, and escalation each action should carry before it is handed to an autonomous agent.
By consequence: 36 read, 21 write, 27 physical, and 1 safety-critical.
1 operation are classed safety-critical and should require human-in-the-loop approval at runtime.
Contracts are classified heuristically from the provider’s OpenAPI and refresh on every APIs.io network build; audience is bound per deployment. The model follows Curity’s Access Intelligence (apidays Munich 2026). Browse every provider’s agent contracts at agentic-access.apis.io.
By consequence
Highest-consequence actions
The physical and safety-critical operations an agent could invoke — the ones that most warrant scoped tokens, tight TTLs, and escalation. Full per-operation contracts are in the source below.
| Method | Path | Consequence | Human-in-loop |
|---|---|---|---|
| POST | /api/v1/external/auth/revoke | safety-critical | required |
| POST | /api/v1/external/shipments | physical | conditional |
| PUT | /api/v1/external/shipments/{shipmentId} | physical | conditional |
| DELETE | /api/v1/external/shipments/{shipmentId} | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/containers | physical | conditional |
| PUT | /api/v1/external/shipments/{shipmentId}/containers/{containerId} | physical | conditional |
| DELETE | /api/v1/external/shipments/{shipmentId}/containers/{containerId} | physical | conditional |
| PUT | /api/v1/external/shipments/{shipmentId}/details | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/documents | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/documents/analyze-types | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/documents/cross-validate | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/documents/merge | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/documents/upload-multi | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/documents/validate | physical | conditional |
| PUT | /api/v1/external/shipments/{shipmentId}/documents/{documentId} | physical | conditional |
| DELETE | /api/v1/external/shipments/{shipmentId}/documents/{documentId} | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/documents/{documentId}/extract | physical | conditional |
| PUT | /api/v1/external/shipments/{shipmentId}/documents/{documentId}/extracted-data | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/items | physical | conditional |
| PUT | /api/v1/external/shipments/{shipmentId}/items/{itemId} | physical | conditional |
| DELETE | /api/v1/external/shipments/{shipmentId}/items/{itemId} | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/items/{itemId}/move | physical | conditional |
| POST | /api/v1/external/shipments/{shipmentId}/packages | physical | conditional |
| PUT | /api/v1/external/shipments/{shipmentId}/packages/{packageId} | physical | conditional |
| DELETE | /api/v1/external/shipments/{shipmentId}/packages/{packageId} | physical | conditional |