Amazon Resource Explorer Search API

The Search API from Amazon Resource Explorer — 1 operation(s) for search.

Operations 1

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-search-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-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Resource Explorer Index Search 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: Search
paths:
  /Search:
    post:
      operationId: Search
      summary: Search Resources
      description: Searches for resources using the Resource Explorer query syntax.
      tags:
      - Search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchRequest'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
components:
  schemas:
    SearchRequest:
      type: object
      required:
      - QueryString
      properties:
        QueryString:
          type: string
          description: A string that includes keywords and filters to search for resources.
        MaxResults:
          type: integer
          description: The maximum number of results to include in the response.
        NextToken:
          type: string
          description: The token for the next page of results.
        ViewArn:
          type: string
          description: The ARN of the view to search.
    Resource:
      type: object
      properties:
        Arn:
          type: string
          description: The Amazon Resource Name (ARN) of the resource.
        LastReportedAt:
          type: string
          format: date-time
          description: The date and time the resource was last updated.
        OwningAccountId:
          type: string
          description: The AWS account ID of the account that owns the resource.
        Region:
          type: string
          description: The AWS Region where the resource exists.
        ResourceType:
          type: string
          description: The type of the resource.
        Service:
          type: string
          description: The AWS service that owns the resource.
    SearchResponse:
      type: object
      properties:
        Count:
          type: object
          description: The count of matching resources.
        NextToken:
          type: string
          description: The token for the next page of results.
        Resources:
          type: array
          items:
            $ref: '#/components/schemas/Resource'
        ViewArn:
          type: string
          description: The ARN of the view used for the search.
  securitySchemes:
    sigv4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4