Amazon DataZone Assets API

Operations for managing data assets in the catalog

Operations 3

POST /v2/domains/{domainIdentifier}/assets Create Asset #
GET /v2/domains/{domainIdentifier}/assets/{identifier} Get Asset #
DELETE /v2/domains/{domainIdentifier}/assets/{identifier} Delete Asset #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
Pricing
https://aws.amazon.com/datazone/pricing/
🔗
FAQ
https://aws.amazon.com/datazone/faqs/
🔗
JSONLD
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/json-ld/amazon-datazone-context.jsonld
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-audit-domain-subscriptions-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-bootstrap-domain-and-project-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-catalog-asset-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-discover-and-subscribe-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-onboard-data-workspace-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-provision-domain-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-provision-environment-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-publish-data-product-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-rename-project-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-request-and-track-subscription-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-teardown-domain-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-datazone/refs/heads/main/arazzo/amazon-datazone-teardown-project-workflow.yml

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amazon-datazone-assets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amazon-datazone-assets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon DataZone Assets API
  description: The Amazon DataZone API provides programmatic access to create and manage data domains, data assets, data catalogs, projects, subscriptions, and governance policies for enterprise-wide data management and sharing.
  version: 2018-05-10
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
servers:
- url: https://datazone.amazonaws.com
  description: Amazon DataZone API
security:
- awsSignatureV4: []
tags:
- name: Assets
  description: Operations for managing data assets in the catalog
paths:
  /v2/domains/{domainIdentifier}/assets:
    post:
      operationId: createAsset
      summary: Create Asset
      description: Creates a data asset in the DataZone catalog.
      tags:
      - Assets
      parameters:
      - name: domainIdentifier
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAssetRequest'
            examples:
              default:
                x-microcks-default: true
                value:
                  name: SalesOrdersTable
                  description: Daily sales orders from production database
                  domainIdentifier: dzd_1234567890abcde
                  owningProjectIdentifier: prj_abc123
                  typeIdentifier: amazon.datazone.RelationalTable
      responses:
        '201':
          description: Asset created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Asset'
              examples:
                default:
                  x-microcks-default: true
                  value:
                    id: asset_001abc
                    name: SalesOrdersTable
                    description: Daily sales orders from production database
                    domainId: dzd_1234567890abcde
                    owningProjectId: prj_abc123
                    createdAt: '2024-04-15T12:00:00Z'
  /v2/domains/{domainIdentifier}/assets/{identifier}:
    get:
      operationId: getAsset
      summary: Get Asset
      description: Gets the details of a data asset in the DataZone catalog.
      tags:
      - Assets
      parameters:
      - name: domainIdentifier
        in: path
        required: true
        schema:
          type: string
      - name: identifier
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Asset details returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Asset'
              examples:
                default:
                  x-microcks-default: true
                  value:
                    id: asset_001abc
                    name: SalesOrdersTable
                    description: Daily sales orders from production database
                    domainId: dzd_1234567890abcde
        '404':
          description: Asset not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    delete:
      operationId: deleteAsset
      summary: Delete Asset
      description: Deletes a data asset from the DataZone catalog.
      tags:
      - Assets
      parameters:
      - name: domainIdentifier
        in: path
        required: true
        schema:
          type: string
      - name: identifier
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Asset deleted successfully
components:
  schemas:
    Asset:
      description: A data asset cataloged in the DataZone data catalog.
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the asset
        name:
          type: string
          description: The name of the data asset
        description:
          type: string
          description: The description of the data asset
        domainId:
          type: string
        owningProjectId:
          type: string
        typeIdentifier:
          type: string
          description: The type of the asset
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    Error:
      description: Standard error response from the DataZone API.
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message
        code:
          type: string
          description: An error code identifying the type of error
    CreateAssetRequest:
      description: Request body for creating a data asset.
      type: object
      required:
      - name
      - domainIdentifier
      - owningProjectIdentifier
      - typeIdentifier
      properties:
        name:
          type: string
        description:
          type: string
        domainIdentifier:
          type: string
        owningProjectIdentifier:
          type: string
        typeIdentifier:
          type: string
  securitySchemes:
    awsSignatureV4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 authentication