Amazon Resource Explorer Views API

The Views API from Amazon Resource Explorer — 5 operation(s) for views.

Operations 5

POST /CreateView Create View #
POST /DeleteView Delete View #
POST /GetView Get View #
POST /ListViews List Views #
POST /BatchGetView Batch Get View #

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-resource-explorer-views-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-resource-explorer-views-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Resource Explorer Index Views API
  description: AWS Resource Explorer is a resource search and discovery service that provides a unified view of your AWS resources across Regions.
  version: 2022-07-28
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://resource-explorer-2.{region}.amazonaws.com
  variables:
    region:
      default: us-east-1
      description: AWS region
security:
- sigv4: []
tags:
- name: Views
paths:
  /CreateView:
    post:
      operationId: CreateView
      summary: Create View
      description: Creates a view with filters for Resource Explorer searches.
      tags:
      - Views
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - ViewName
              properties:
                ViewName:
                  type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/View'
  /DeleteView:
    post:
      operationId: DeleteView
      summary: Delete View
      description: Deletes the specified view.
      tags:
      - Views
      responses:
        '200':
          description: Success
  /GetView:
    post:
      operationId: GetView
      summary: Get View
      description: Retrieves details of the specified view.
      tags:
      - Views
      responses:
        '200':
          description: Success
  /ListViews:
    post:
      operationId: ListViews
      summary: List Views
      description: Lists all available views in the AWS Region.
      tags:
      - Views
      responses:
        '200':
          description: Success
  /BatchGetView:
    post:
      operationId: BatchGetView
      summary: Batch Get View
      description: Retrieves details for a batch of views.
      tags:
      - Views
      responses:
        '200':
          description: Success
components:
  schemas:
    View:
      type: object
      properties:
        Filters:
          type: object
          description: The filters applied to the view.
        IncludedProperties:
          type: array
          items:
            type: object
          description: Additional properties to include in the view.
        ViewArn:
          type: string
          description: The ARN of the view.
  securitySchemes:
    sigv4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4