Get Term

Fetch a specific term by its ID.

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

Usage

Fetch a term by ID

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

Response (200 OK):

{
  "id": 1,
  "term": "SSG",
  "definition": "Static Site Generator.",
  "category": "docs-as-code",
  "see_also": []
}

The see_also field contains IDs of related terms. Fetch each ID with another GET /terms/{id} call to resolve the full entries.

Term not found

If no term exists with the given ID, the API returns 404:

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

Response (404 Not Found):

{
  "detail": "Term not found"
}

To find a valid ID, use List Terms first.

Path Params
integer
required

The unique numeric ID of the glossary term.

Responses

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