Catalog & actions

Browse the sites and actions Wire supports, and inspect their schemas.

The catalog is the list of sites Wire wraps and the actions you can run on each. Browse it in the console or over the API.

List every site

curl https://api.openwire.sh/v1/wire/catalog \
  -H "X-API-Key: $ANAKIN_API_KEY"
# → { "total_sites": 155, "total_actions": 920, "catalog": [
#     { "slug": "amazon", "name": "Amazon", "actions": 14 }, ... ] }

Inspect one site

Get the schema for each action a site exposes: its params, return shape, and per-call credit cost:

curl https://api.openwire.sh/v1/wire/catalog/amazon \
  -H "X-API-Key: $ANAKIN_API_KEY"

Search for an action

curl "https://api.openwire.sh/v1/wire/search?q=product+reviews" \
  -H "X-API-Key: $ANAKIN_API_KEY"

Action IDs

An action is addressed as <site>.<action>, e.g. amazon.search_products or github.create_issue. You pass it as action_id when you run a task.

Don't see a site?

Request it from the console; most new sites ship within days.