gkmex-api-integration

gkmex-api-integration is a skill for Claude Code, Codex from gkmex75/gkmex-developer-resources. It costs 37 tokens per session (725 once invoked), scanned A, original, MIT.

An integration guide for Gkmex's public crane inventory, available through REST, JavaScript, and Python interfaces. REST is a standard way for software to exchange data over the web; an SDK is a package that simplifies those requests.

In plain words
What is it for?
Building or troubleshooting applications that list and retrieve crane inventory, using Node.js, Python, or direct HTTP requests.
Why use it?
It helps developers use the documented inventory interface correctly instead of guessing endpoints, identifiers, authentication, or paging behavior.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Building or troubleshooting applications that list and retrieve crane inventory, using Node.js, Python, or direct HTTP requests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gkmex75/gkmex-developer-resources/gkmex-api-integration
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add gkmex75/gkmex-developer-resources --skill gkmex-api-integration
Clone the repo
git clone --depth 1 https://github.com/gkmex75/gkmex-developer-resources

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gkmex-api-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/gkmex75/gkmex-developer-resources/gkmex-api-integration.svg)](https://agentmods.dev/skills/gkmex75/gkmex-developer-resources/gkmex-api-integration)
Your own site
<a href="https://agentmods.dev/skills/gkmex75/gkmex-developer-resources/gkmex-api-integration"><img src="https://agentmods.dev/badge/skills/gkmex75/gkmex-developer-resources/gkmex-api-integration.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 725 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.00725
Opus 5 $0.00018 $0.00362
Sonnet 5 $0.00007 $0.00145
Haiku 4.5 $0.00004 $0.00072

Measured 3d ago against content hash 8e84cbc0ca0f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

gkmex-api-integration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/gkmex-api-integration/SKILL.md · 50 lines

How it starts

The opening of the file, as written. The whole thing — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Gkmex API integration

Build consumers of the published inventory; use the inventory and comparison workflows for buying questions. Check the developer guide and OpenAPI contract before adding integration behavior.

Choose the existing interface

Runtime Official package List / detail methods
Node.js 20+ npm install @gstcranes/gkmex listCranes / getCrane
Python 3.10+ pip install gkmex list_cranes / get_crane

Both export GkmexClient and GkmexError. Respect the application's chosen stack. If its runtime cannot use an SDK, call public REST instead: GET https://gkmex.com/api/health, GET https://gkmex.com/api/v1/cranes, and GET https://gkmex.com/api/v1/cranes/{id}. Use a returned public ID for details; never guess one.

All interfaces are public, zero-auth and read-only. Do not request an API key or invent OAuth. For direct HTTP clients, send Accept: application/json, a truthful application User-Agent and a finite timeout. A non-JSON403 can come from edge protection, not missing API credentials; inspect it without changing server protection.

Read pages correctly

Collection filters are brand, type (mobile or crawler), limit (1–100), and either offset or cursor. Never send cursor and offset together. Keep filters stable across pages. Treat next_cursor as opaque: send it unchanged through normal query encoding, then stop when absent or null. count is this page's length, not the matching total.

import { GkmexClient } from "@gstcranes/gkmex";

const client = new GkmexClient();
let cursor;
do {
  const page = await client.listCranes({
    type: "mobile",
    limit: 100,
    ...(cursor ? { cursor } : {}),
  });
  for (const crane of page.data) console.log(crane.url);
  cursor = page.next_cursor;
} while (cursor);

Preserve data and failures

An empty data array with HTTP200 is a valid no-match result; guard before accessing its first record. A timeout, HTTP error or malformed response is not empty inventory. Expose failure or incomplete-result state; do not silently return an empty success. Inspect SDK GkmexError.status and public error details. Correct400 parameters or a404 ID before retrying; bound any transient retries and respect Retry-After when supplied.

Read the full file on GitHub · 50 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 50 lines · 37 tokens per session scan A 8e84cbc0ca0f

Subscribe to this mod's changes

gkmex-api-integration is a skill published in the GitHub repository gkmex75/gkmex-developer-resources (0 stars, last pushed 5d ago), licensed MIT. It adds 37 tokens to every session and 725 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

fastapi

FastAPI best practices and conventions. Use when working with FastAPI APIs, Pydantic models, dependencies, streaming responses including Server-Sent Events (SSE), and serving frontend apps. Keeps FastAPI code clean and up to date with the latest features and patterns.

fastapi/fastapi · 57 tokens

fastapi-expert

Expert-level FastAPI development for high-performance Python APIs with async support. Use when the user mentions Python, API, async, REST, OpenAPI, or Pydantic, or when the task involves FastAPI Features.

personamanagmentlayer/pcl · 49 tokens

fastapi

Operational skill for FastAPI: Pydantic models, dependency injection, async routes, OpenAPI, authentication hooks, and TestClient-based testing.

alivirgo/Major-AI-Skills · 32 tokens

python-development

Professional Python development skill covering modern Python 3.10+, FastAPI, Django, Flask, async programming, data processing, and best practices. Use this skill when developing Python web applications, building FastAPI/Django projects, implementing async programming, or need guidance on Python architecture design…

ProjAnvil/MindForge · 63 tokens

stripe-projects

Use after E2B sandbox/API access has been provisioned through Stripe Projects and the user needs to use the resulting E2B API key with the E2B CLI, JavaScript SDK, Python SDK, or Code Interpreter SDK.

e2b-dev/E2B · 51 tokens

azure-mgmt-botservice-py

Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources. Triggers: "azure-mgmt-botservice", "AzureBotService", "bot management", "conversational AI", "bot channels".

microsoft/skills · 59 tokens