Get Terms

Retrieve a list of technical terms with optional filtering.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Usage

List all terms

curl https://tech-terms-api-production.up.railway.app/terms

Response (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"
Query Params
string
enum

Filter terms by technical domain.

Allowed:

Search term names by keyword (case-insensitive).

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json