online / endpoints 62 / categories 10 / rate 60/min/ip /

Infinite

Wildcard catch-all returning deterministic well-formed JSON or HTML for any path of any depth. Same URL → same response; distinct URL → distinct response. URL space is effectively infinite.

GET /infinite/html/comments/{path}

Deterministic well-formed comment HTML for any path tail. Links to author, parent post, and sibling/related comments.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
links Optional number of outbound links (0-10, default 10). Out-of-range values are clamped silently.

details

GET /infinite/html/posts/{path}

Deterministic well-formed post HTML for any path tail. Links to author, comments on this post, and related posts.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
links Optional number of outbound links (0-10, default 10). Out-of-range values are clamped silently.

details

GET /infinite/html/products/{path}

Deterministic well-formed product HTML for any path tail. Links to related products and reviewing users.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
links Optional number of outbound links (0-10, default 10). Out-of-range values are clamped silently.

details

GET /infinite/html/users/{path}

Deterministic well-formed user HTML for any path tail. Links to the user's posts, comments, and followed users.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
links Optional number of outbound links (0-10, default 10). Out-of-range values are clamped silently.

details

GET /infinite/json/comments/{path}

Deterministic well-formed comment JSON for any path tail.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
fields Optional comma-separated field names. Open-ended. Default: id, body, author_id, post_id, created_at.

details

GET /infinite/json/posts/{path}

Deterministic well-formed post JSON for any path tail.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
fields Optional comma-separated field names. Open-ended. Default: id, title, body, author_id, published_at, comment_count.

details

GET /infinite/json/products/{path}

Deterministic well-formed product JSON for any path tail.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
fields Optional comma-separated field names. Open-ended. Default: id, sku, title, description, price, currency, in_stock.

details

GET /infinite/json/users/{path}

Deterministic well-formed user JSON for any path tail.

path Arbitrary path of any depth; seeds the deterministic content generator. Same path tail under different types yields different content.
fields Optional comma-separated field names. Open-ended; unknown names get a generic seeded string. Default: id, username, name, email, bio, joined_at, post_count.

details

GET /infinite/<format>/<type>/<arbitrary/path/of/any/depth> where <format> is json or html and <type> is users, products, posts, or comments. The path tail seeds a deterministic content generator, so requests are schema-stable and per-URL-reproducible while the URL space stays unbounded.

HTML responses emit up to 10 cross-type outbound links derived from the same seed, turning the namespace into an infinite navigable web — useful for crawler, scraper, link-checker, and search-indexer testing. JSON responses are well-suited to cache/dedup/training-pipeline stress testing against unbounded URL cardinality.

This is a not.-only feature with no chaos counterpart. The full catalog of endpoints is Disallowed in the hub’s robots.txt and every response carries X-Robots-Tag: noindex, nofollow; a dedicated 10/60s per-IP rate limit caps cost. Each response self-identifies (_note field in JSON, visible footer in HTML) to prevent confusion with real content.