← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — API Design educational data only
| |
Last 30 days
2 pings — 2026-05-26 T 3 pings — 2026-05-27 W 15 pings — 2026-05-28 T 2 pings — 2026-05-29 F 3 pings — 2026-05-30 S 2 pings — 2026-05-31 S 7 pings — 2026-06-01 M 2 pings — 2026-06-02 T 10 pings — 2026-06-03 W 13 pings — 2026-06-04 T 19 pings — 2026-06-05 F 18 pings — 2026-06-06 S 38 pings — 2026-06-07 S 34 pings — 2026-06-08 M 21 pings — 2026-06-09 T 25 pings — 2026-06-10 W 7 pings — 2026-06-11 T 5 pings — 2026-06-12 F 11 pings — 2026-06-13 S 2 pings — 2026-06-14 S 3 pings — 2026-06-15 M 4 pings — 2026-06-16 T 5 pings — 2026-06-17 W 6 pings — 2026-06-18 T 3 pings — 2026-06-19 F 3 pings — 2026-06-20 S 6 pings — 2026-06-21 S 9 pings — 2026-06-22 M 6 pings — Yesterday T 1 ping — Today W
PetalBot 1
PetalBot 5Ahrefs 1
Amazonbot 213Perplexity 142Scrapy 137Google 89Ahrefs 78SEMrush 54ChatGPT 44Unknown AI 34Claude 31Bing 24Meta AI 18PetalBot 14Majestic 10Sogou 5Qwen 3Backlinks.com 1
crawler 835 crawler_json 58 pre-tracking 4
Category total897 pings Terms pinged19 / 19 Distinct agents15
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
API Request Timeout Handling
Client-side deadlines, retries with backoff, and circuit breakers that keep your app responsive when an upstream API fails to reply in time.
2w ago API Design intermediate
API Versioning 🧠 1
Strategies for evolving an API without breaking existing consumers — URI versioning, header versioning, and content negotiation.
3mo ago API Design intermediate
HTTP Content Negotiation 🧠 1
The HTTP mechanism by which clients declare what formats, languages, and encodings they accept (Accept, Accept-Language, Accept-Encoding) and servers respond with the best match — or 406 Not Acceptable if none fits.
3mo ago API Design intermediate
Diagram: GraphQL Subscriptions GraphQL Subscriptions
A GraphQL operation type that opens a long-lived connection to the server and pushes real-time data updates to the client whenever a specific event occurs.
3mo ago API Design advanced
API Authentication Patterns 🧠 2
Bearer tokens (JWT) for user sessions, API keys for machine-to-machine, mTLS for highest-security internal services — matching authentication method to the use case.
3mo ago API Design intermediate
Diagram: API Backwards Compatibility API Backwards Compatibility 🧠 1
Rules for evolving an API without breaking existing clients — additive changes are safe, removals and renames require versioning, and deprecation needs a documented sunset period.
3mo ago API Design intermediate
API Contract Testing 🧠 2
Consumer-driven contract tests verify that a provider API matches what consumers expect — catching breaking changes before deployment, without end-to-end tests.
3mo ago API Design advanced
API Documentation 🧠 2
OpenAPI/Swagger for REST APIs, Postman collections for explorability, and Stoplight for design-first workflows — good API docs are the product's user interface for developers.
3mo ago API Design intermediate
Diagram: API Idempotency Keys API Idempotency Keys PHP 7.0+
A client-generated unique key sent with non-idempotent requests — the server stores the response and returns it unchanged if the same key is received again, preventing duplicate operations.
3mo ago API Design intermediate
API Mocking 🧠 1
Prism (OpenAPI mock server), WireMock (HTTP stub server), Mockoon (GUI), and Guzzle MockHandler for PHP unit tests — enabling testing without real API calls.
3mo ago API Design intermediate
GraphQL vs REST vs gRPC
REST for public APIs and resource-oriented design, GraphQL for flexible client-driven queries, gRPC for high-performance internal service communication.
3mo ago API Design intermediate
Hypermedia APIs — HATEOAS
REST APIs that include links in responses — clients discover available actions from the response rather than hardcoding URLs, making APIs self-describing and evolvable.
3mo ago API Design advanced
Webhook Design PHP 5.0+ 🧠 1
Best practices for reliable webhooks — HMAC signature verification, idempotency, delivery retry with exponential backoff, and handling slow consumers with queues.
3mo ago API Design intermediate
Diagram: API Deprecation API Deprecation 🧠 1
The process of signalling that an API version, endpoint, or parameter will be removed — giving consumers time to migrate while maintaining backwards compatibility.
3mo ago API Design intermediate
Diagram: API Error Handling API Error Handling 🧠 1
Returning structured, machine-readable error responses using appropriate HTTP status codes — enabling clients to handle errors programmatically without parsing message strings.
3mo ago API Design intermediate
Diagram: API Pagination Patterns API Pagination Patterns
Strategies for returning large collections in manageable chunks — offset/page-based, cursor/keyset, and hybrid approaches each suit different use cases.
3mo ago API Design intermediate
Diagram: API Rate Limiting API Rate Limiting
Controlling how many requests a client can make in a time window — protecting against abuse, ensuring fair usage, and preventing accidental DoS from misbehaving clients.
3mo ago API Design intermediate
GraphQL Schema Design PHP 7.0+
Designing GraphQL schemas that are intuitive, evolvable, and performant — with clear type hierarchies, nullable conventions, and avoiding the N+1 query problem.
3mo ago API Design advanced
REST Architectural Constraints PHP 5.0+
The six constraints Fielding defined for REST — statelessness, uniform interface, client-server separation, cacheability, layered system, and optional code on demand.
3mo ago API Design intermediate
✓ schema.org compliant