get_api

Pack: apis-guru · Endpoint: https://gateway.pipeworx.io/apis-guru/mcp

Get the full directory entry for one API by its exact APIs.guru name/key (e.g. “stripe.com” or “googleapis.com:calendar”). Returns every version of that API with its info (title, description, provider, categories), last-updated date, docs link, and OpenAPI/Swagger spec URLs (swaggerUrl JSON + swaggerYamlUrl YAML), plus which version is preferred. Use this once you know the exact name (from search_apis) to fetch the spec URLs for an API.

Parameters

NameTypeRequiredDescription
namestringyesExact APIs.guru directory key, e.g. “stripe.com” or “googleapis.com:calendar”.

Example call

Arguments

{
  "name": "stripe.com"
}

curl

curl -X POST https://gateway.pipeworx.io/apis-guru/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_api","arguments":{"name":"stripe.com"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_api', {
  "name": "stripe.com"
});

More examples

{
  "name": "googleapis.com:calendar"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "apis-guru": {
      "url": "https://gateway.pipeworx.io/apis-guru/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 6, 2026