get
https://tech-terms-api-production.up.railway.app/terms
Retrieve a list of technical terms with optional filtering.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Usage
List all terms
curl https://tech-terms-api-production.up.railway.app/termsResponse (200 OK):
[
{
"id": 1,
"term": "SSG",
"definition": "Static Site Generator.",
"category": "docs-as-code",
"see_also": []
},
{
"id": 101,
"term": "Hydration",
"definition": "The process of attaching event listeners to static HTML.",
"category": "frontend",
"see_also": [105, 202]
}
]Returns an empty array ([]) if no terms exist or no terms match the filters.
Filter by category
curl "https://tech-terms-api-production.up.railway.app/terms?category=frontend"Valid category values: frontend, backend, devops, docs-as-code
Search by term name
curl "https://tech-terms-api-production.up.railway.app/terms?search=hydration"The search is case-insensitive and matches against the term field only.
Combine filters
curl "https://tech-terms-api-production.up.railway.app/terms?category=frontend&search=hydration"