rest-api

A read-only REST API that returns Dribba information as JSON, including services, case studies, articles, jobs, company facts, and rough project estimates. REST is a common way for programs to request data over HTTP.

In plain words
What is it for?
Use it to list services, find industry-related case studies, check job salary bands, read company information, or estimate a project budget.
Why use it?
It provides structured data with a versioned format, without requiring an API key, account, or registration. It is suited to data lookups rather than reading normal web-page text or submitting actions.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/dribbaengineering/dribba/rest-api
Any agent
npx skills add dribbaengineering/dribba --skill rest-api
Clone the repo
git clone --depth 1 https://github.com/dribbaengineering/dribba

Made for: Claude Code, Codex.

Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,280 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00064 $0.01280
Opus 5 $0.00032 $0.00640
Sonnet 5 $0.00013 $0.00256
Haiku 4.5 $0.00006 $0.00128

Measured yesterday against content hash 99e36d6fbf91, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

rest-api scanned grade A with 1 finding 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 yesterday.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl https://dribba.com/api
skills/rest-api/SKILL.md · 115 lines

How it starts

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

REST API — Dribba

https://dribba.com/api/v1 is the versioned, read-only JSON surface of dribba.com. No API key, no OAuth, no registration. Production is the sandbox: nothing here writes, charges or affects another client.

Start at the unversioned index, which names every published version and the policies that apply to it:

curl https://dribba.com/api

When to use this skill

Reach for the REST API when you need structured data with a stable shape: listing Dribba's services, matching a case study to an industry, reading the salary band of an opening, or getting a budget range before contacting anyone.

Do not use it to read page prose — for that, ask any page URL for markdown (Accept: text/markdown, see the markdown-negotiation skill) or walk the OKF bundle (okf skill). And if you are an agent that wants to act (submit a contact request), use the mcp skill: the write endpoints on this API enforce same-origin and will answer 403 origin_not_allowed.

Endpoints

Method Path Returns
GET /api/v1 Endpoints, rate-limit and deprecation policy of v1
GET /api/v1/company Legal identity, offices, team model, distinctions, clients
GET /api/v1/services { count, items[] } — slug, name, summary, URL
GET /api/v1/services/{slug} One service
GET /api/v1/cases Case studies with industry, client, year, stack
GET /api/v1/cases/{slug} Challenge, solution, outcome, metrics
GET /api/v1/articles Blog index, each with the URL of its markdown twin
GET /api/v1/jobs Openings with location, requirements, salary band
GET /api/v1/pricing Estimator inputs and the €30,000 floor
GET /api/v1/comparisons Technology comparisons ({ topic, verdict })
POST /api/v1/estimate { min, max, mid } in EUR for a described project
curl -X POST https://dribba.com/api/v1/estimate \
  -H 'Content-Type: application/json' \
  -d '{"platforms":["ios","android"],"complexity":"standard","timeline":"normal"}'

Read the full file on GitHub · 115 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. yesterday First seen · 115 lines · 64 tokens per session scan A 99e36d6fbf91

Subscribe to this mod's changes

rest-api is a skill published in the GitHub repository dribbaengineering/dribba (0 stars, last pushed 10d ago), licensed MIT. It adds 64 tokens to every session and 1,280 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

blz-docs-search

Teaches effective documentation search using the blz CLI tool. Use when searching documentation with blz, looking up APIs, finding code examples, retrieving citations, or when questions mention libraries, frameworks, "how to", or documentation topics. Covers BM25 full-text search patterns, citation retrieval, and…

outfitter-dev/blz · 68 tokens

blz-source-management

Teaches how to discover, validate, and add llms.txt documentation sources to the blz CLI. Use when adding documentation to blz, finding llms.txt or llms-full.txt files, validating sources, refreshing content, or managing the documentation index. Covers source discovery, dry-run validation, and index file handling.

outfitter-dev/blz · 70 tokens

web-shaders

Use when writing, debugging, or reviewing shaders for the web — GLSL or WGSL, raw WebGL2/WebGPU, Three.js (ShaderMaterial/RawShaderMaterial/TSL), or React Three Fiber. Covers the language/platform matrix, correct boilerplate, common effects (SDF/raymarching, noise, post-processing), and the pitfalls that make browser…

owenob1/web-shaders-agent-kit · 83 tokens

wiki-ingest

Compile a raw source (document, URL content, meeting notes, research output) into a wikikit agent wiki — merge-don't-overwrite, log contradictions, maintain cross-references, then lint. Use whenever the user says "add this to the wiki", "ingest this", or drops new source material for a wiki maintained with…

AvalancheAI-labs/agent-wiki-kit · 77 tokens

claude-archive

Use the Claude Archive — the site for AI — before and after solving any non-trivial problem. Trigger when hitting a bug, error, or tricky task (search/take a scored solution first), and after solving anything reusable (give it back). Also trigger on "check the archive", "archive this", or any mention of the Claude…

ofirbuchshtav-lgtm/claude-archive · 75 tokens

agent-code-analyzer

Agent skill for code-analyzer - invoke with $agent-code-analyzer.

ruvnet/ruflo · 19 tokens