get
https://tech-terms-api-production.up.railway.app/terms/
Fetch a specific term by its ID.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Usage
Fetch a term by ID
curl https://tech-terms-api-production.up.railway.app/terms/1Response (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/9999Response (404 Not Found):
{
"detail": "Term not found"
}To find a valid ID, use List Terms first.