OpenapiMarketplace
Returns the listings the caller's own org has published — what this org is…
Returns the listings the caller's own org has published — what this org is offering, not what it can buy.
GET /v1/marketplace/listings
| Address | https://api.hanzo.ai/v1/marketplace/listings |
| Method | GET |
| Operation | get_marketplace_listings |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the listings the caller's own org has published — what this org is offering, not what it can buy. A publisher only ever sees its own rows.
Request
GET /v1/marketplace/listings takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | listingPage | ok |
200 body — 12 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
listings | body | Listing[] | — | Listings is every listing this org has published, private ones included (Public says which are discoverable by others). |
listings[].category | body | string | — | Category groups the listing in the shop window. |
listings[].createdAt | body | integer | — | CreatedAt is when the listing was published, in Unix SECONDS, minted at insert. |
listings[].currency | body | string | — | Currency is the ISO 4217 code Price is quoted in; Create defaults it to "USD" when the publisher names none. |
listings[].description | body | string | — | Description is the long copy. |
listings[].id | body | string | — | ID is the listing's id, minted here as "lst_" + 16 hex characters. A publisher cannot choose it: Create overwrites whatever arrives. |
listings[].price | body | any | — | exact per-call price; 0 is free. |
listings[].public | body | boolean | — | Public is whether other orgs can discover the listing. |
listings[].publisherOrg | body | string | — | PublisherOrg is the org that published the listing, taken from the validated principal and never off the wire. |
listings[].recipient | body | string | — | seller payout WALLET ID, in PublisherOrg. |
listings[].title | body | string | — | Title is the shop-window name, required and refused past 200 bytes. |
listings[].tool | body | string | — | Tool is the registry name of the offered capability, in the flat fleet-wide tool namespace. |
Failure carries the platform error shape — see Errors.
Examples
hanzo marketplace listings listimport { Configuration, MarketplaceApi } from 'hanzoai';
const api = new MarketplaceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getMarketplaceListings();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import MarketplaceApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = MarketplaceApi(client).get_marketplace_listings()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.MarketplaceAPI.GetMarketplaceListings(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, marketplace_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = marketplace_api::get_marketplace_listings(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.MarketplaceApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new MarketplaceApi(client).getMarketplaceListings();curl https://api.hanzo.ai/v1/marketplace/listings \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches marketplace through the marketplace tool, which names its 6 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_marketplace"
}
}
}'How is this guide?