fyda.click
URL Intelligence & Short Links
fyda turns any destination into a secure, classified short link. Every link is prefixed by what it actually is — shopping, authentication, payment, download and more — so recipients know what to expect before they click.
What you get
Category-prefixed short links
Every link carries a path prefix that reveals the destination type, e.g. /sh/a8Kx92 for shopping.
SSRF-safe classification
URL structure is analyzed first, then destinations are fetched through a hardened, allowlisted pipeline.
Scoped bearer tokens
SHA-256 hashed API tokens with granular scopes, optional IP/CIDR pinning and audit logging.
Redirect chains & monetization
Add one or many intermediate hops, rotate affiliate links, show interstitial pages, or mask the final URL.
Privacy-first analytics
Track clicks, unique visitors, referrers and devices with configurable IP truncation or hashing.
Admin control panel
Manage links, chains, ad providers, campaigns, tokens and security rules with password + TOTP 2FA.
API at a glance
The full API lives on api.fyda.click. Create a link with a scoped token:
curl -X POST https://api.fyda.click/api/v1/urls \
-H "Authorization: Bearer sk_live_<prefix>_<secret>" \
-H "Content-Type: application/json" \
-d '{"url":"https://shop.example.com/product/42"}'| Method | Path | Description |
|---|---|---|
| POST | /api/v1/urls | Create a short URL. Classification starts immediately and continues in the background. |
| GET | /api/v1/urls | List links. Filters: category, status, created_after, created_before, q, tag[key]=value. Pagination: limit, offset, sort. |
| GET | /api/v1/urls/{id} | Fetch a single link with system classification, tags and user metadata. |
| PATCH | /api/v1/urls/{id} | Update destination, status, expiry, tags or user metadata. |
| DELETE | /api/v1/urls/{id} | Soft-delete a link and purge it from the resolver cache. |
| GET | /api/v1/urls/{id}/analytics | Aggregated resolution analytics for one link. |
| GET | /api/v1/urls/{id}/tags | Read all user-defined tags for a link. |
| PUT | /api/v1/urls/{id}/tags | Replace the full tag set. |
See the complete endpoint list on api.fyda.click.
Category prefixes
Every short link is served under the prefix for its detected category. Prefixes and the short domain are configurable in the control panel.