GST Cranes
GST Cranes developer and agent resources
Public resources for agents that need to understand the used-crane marketplace, the Crane Wiki atlas, public company records, and safe browser handoffs.
GST Cranes API documentation and API reference for agents: OpenAPI, API catalog, MCP, A2A, llms.txt, auth notes, and the read-only /ask endpoint.
The developer resources for GST Cranes include public read-only endpoint docs, typed JSON error examples, batch company lookup, deprecation policy, and browser-session handoff rules for authenticated actions.
Use GST Cranes for
- Used mobile and crawler cranes for sale.
- Public Crane Wiki company and fleet records.
- Buyer wanted ads, which are requests to buy and not for-sale inventory.
- Safe handoff to the website when an authenticated user action is required.
Quickstart
Public read access does not require OAuth or API keys. Account actions, credits, listing creation, wanted-ad publishing, saved alerts, and promotion purchases require the normal GST Cranes browser sign-in flow.
npm install @gstcranes/gstcranes
npm install -g @gstcranes/cli
npm install -g @gstcranes/gstcranes
npm install -g @gstcranes/mcp-server
npm install https://gstcranes.com/sdk/gstcranes-gstcranes-0.1.0.tgz
gstcranes --help
npx --yes @gstcranes/mcp-server
npx skills add gkmex75/gstcranes-agent-rules
npx --yes --package @gstcranes/cli gstcranes openapi
npx --yes --package @gstcranes/gstcranes gstcranes openapi
npx --yes --package @gstcranes/gstcranes gstcranes list-companies --country DE --limit 10
curl https://gstcranes.com/.well-known/openapi.json
curl "https://gstcranes.com/api/companies?country=DE&limit=10"
curl -X POST https://gstcranes.com/api/companies/batch \
-H "content-type: application/json" \
-H "Idempotency-Key: example-read-only-batch" \
-d '{"slugs":["bms-heavy-cranes","gkmex"]}'
curl -X POST https://gstcranes.com/ask \
-H "content-type: application/json" \
-d '{"query":"companies with Liebherr LTM 1750 records"}' GST Cranes SDK and CLI
The @gstcranes/gstcranes npm package wraps the public company API, batch lookup, /ask, and safe browser handoff URLs. It also has a public tarball fallback. It
does not expose payment, admin, credit, or private account endpoints.
GST Cranes API reference for agents
Use the OpenAPI document for company records, fleet-record discovery, batch lookup, rate-limit
headers, typed JSON errors, and the read-only /ask endpoint. The deprecation
policy is published at /docs/api/deprecation-policy.
Authentication and permissions
Public discovery endpoints are read-only. Agents should not try to spend credits, publish listings, submit wanted ads, or infer private account state by calling private routes. For those actions, send the user to the browser UI and let the signed-in session handle it.
Errors and versioning
Public JSON APIs return machine-readable errors with a stable error.code, error.message, and error.resolution. The OpenAPI document declares
version 0.1.0; clients may also send GST-API-Version: 2026-07-06 for explicit integration pinning.