Discover APIs published in an API Experience Hub portal as a portal consumer. Use when an end user needs to browse the catalog, search assets by keyword or filter, open an API's detail page, read its terms and conditions, or fetch rendered documentation pages and resources.
72
88%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
As a portal consumer (end user), you need to find the right API and understand what it does before requesting access. This workflow covers the discovery surface of an API Experience Hub (AEH) portal: listing and searching published assets, inspecting a specific asset's metadata, reading its terms of use, and fetching its documentation pages and downloadable resources.
What you'll build: A short list of candidate APIs and the supporting docs you need to decide which one to request access to.
Before starting, ensure:
Authentication ready
manage-portal-members-and-prospects for the admin flow that grants this)Portal context known
targetOrganizationId — the Anypoint organization hosting the portalportalId / targetPortalId — the specific portal you are browsingStart with a broad browse of everything the portal publishes.
What you'll need:
targetOrganizationId, targetPortalIdapi: urn:api:api-experience-hub-consumer
operationId: listAssetsCommunityAsset
inputs:
targetOrganizationId:
userProvided: true
description: Anypoint organization ID hosting the portal
targetPortalId:
userProvided: true
description: Portal ID the user is browsing
outputs:
- name: assets
path: $.assets[*]
labels: $.assets[*].name
description: Assets published in the portal
- name: groupId
path: $.assets[*].groupId
description: Exchange groupId of an asset, used by detail-level operations
- name: assetId
path: $.assets[*].assetId
description: Exchange assetId of an asset
- name: minorVersion
path: $.assets[*].minorVersion
description: Minor version visible to the consumerNarrow the list with a keyword, tag, category or asset-type filter.
What you'll need:
targetOrganizationId, targetPortalIdapi: urn:api:api-experience-hub-consumer
operationId: searchCommunityAssets
inputs:
targetOrganizationId:
from:
variable: targetOrganizationId
description: Anypoint organization ID hosting the portal
targetPortalId:
from:
variable: targetPortalId
description: Portal ID the user is browsing
searchRequest:
userProvided: true
description: Search criteria (free-text query, categories, tags, paging)
example:
searchTerm: orders
tags:
- v2
limit: 25
offset: 0
outputs:
- name: matchingAssets
path: $.assets[*]
labels: $.assets[*].name
description: Assets matching the search queryRetrieve the full metadata of one asset — summary, description, contact info, classifier, all visible minor versions.
What you'll need:
targetOrganizationId, targetPortalIdgroupId, assetId, minorVersion chosen from Step 1 or Step 2api: urn:api:api-experience-hub-consumer
operationId: getAssetDetails
inputs:
targetOrganizationId:
from:
variable: targetOrganizationId
description: Anypoint organization ID hosting the portal
targetPortalId:
from:
variable: targetPortalId
description: Portal ID the user is browsing
groupId:
from:
variable: groupId
description: Exchange groupId of the asset
assetId:
from:
variable: assetId
description: Exchange assetId of the asset
minorVersion:
from:
variable: minorVersion
description: Minor version to open
outputs:
- name: assetDetails
path: $
description: Full asset metadata, including instances and tiers available to requestBefore requesting access, consumers should read the terms published for the asset.
What you'll need:
targetOrganizationId, targetPortalId, groupId, assetId, minorVersionapi: urn:api:api-experience-hub-consumer
operationId: getTermsAndConditions
inputs:
targetOrganizationId:
from:
variable: targetOrganizationId
description: Anypoint organization ID hosting the portal
targetPortalId:
from:
variable: targetPortalId
description: Portal ID the user is browsing
groupId:
from:
variable: groupId
description: Exchange groupId of the asset
assetId:
from:
variable: assetId
description: Exchange assetId of the asset
minorVersion:
from:
variable: minorVersion
description: Minor version whose terms to fetch
outputs:
- name: termsContent
path: $.content
description: Markdown/HTML content of the terms and conditionsEach asset can publish multiple documentation pages (home, guides, changelog, etc.).
What you'll need:
targetOrganizationId, targetPortalId, groupId, assetId, minorVersionapi: urn:api:api-experience-hub-consumer
operationId: getAssetPages
inputs:
targetOrganizationId:
from:
variable: targetOrganizationId
description: Anypoint organization ID hosting the portal
targetPortalId:
from:
variable: targetPortalId
description: Portal ID the user is browsing
groupId:
from:
variable: groupId
description: Exchange groupId of the asset
assetId:
from:
variable: assetId
description: Exchange assetId of the asset
minorVersion:
from:
variable: minorVersion
description: Minor version to fetch pages for
pagePath:
userProvided: true
description: Optional documentation page path (leave empty to list all pages)
outputs:
- name: pageContent
path: $
description: The requested documentation page (or list of pages)Download companion resources (diagrams, sample files, SDK bundles) attached to an asset.
What you'll need:
targetOrganizationId, targetPortalId, groupId, assetId, minorVersionresourceId obtained from the asset-details response in Step 3api: urn:api:api-experience-hub-consumer
operationId: getAssetResource
inputs:
targetOrganizationId:
from:
variable: targetOrganizationId
description: Anypoint organization ID hosting the portal
targetPortalId:
from:
variable: targetPortalId
description: Portal ID the user is browsing
groupId:
from:
variable: groupId
description: Exchange groupId of the asset
assetId:
from:
variable: assetId
description: Exchange assetId of the asset
minorVersion:
from:
variable: minorVersion
description: Minor version to fetch the resource from
resourceId:
userProvided: true
description: Resource ID obtained from the asset detail response
outputs:
- name: resourceContent
path: $
description: The binary/text resource content✅ Informed API Choice — You have the metadata, terms and docs you need to decide which API to request access to.
request-api-access to create a contract against the chosen instance and tier.manage-portal-applications to create the application identity that will consume the API.32e2b58
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.