main 0d54602

Retrieve a term by UUID

Returns a term of a specific termbase given a recnum (primary key within that termbase)

Request

Method: GET
Route: api/entry/index/uid/{uid}
Example: api/entry/index/uid/100000005
Route Parameter Pattern Requirement
uid [0-9]{9,12} Required
Request Headers
host: localhost:8000
accept: application/json
user-agent: Symfony
content-type: application/json
accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
content-length: 2
accept-language: en-us,en;q=0.5

Response

200 JSON
Response Headers
date: Tue, 14 Oct 2025 08:48:16 GMT
content-type: application/json
cache-control: no-cache, private
{
    "data": [
        {
            "RECNUM": 5,
            "TERMEN": "irrevocable license",
            "TERMGR": "ανέκκλητη άδεια",
            "MOTOVOC": "S 852",
            "CODE": null,
            "STAGE": "3",
            "ABBRGR": null,
            "STERMGR": null,
            "SECTION": null,
            "NOTEGR": null,
            "ABBREN": null,
            "STERMEN": "TR 101 790",
            "TERMFR": null,
            "ABBRFR": null,
            "TERMGE": null,
            "ABBRGE": null,
            "NOUN": null,
            "NOTEEN": null,
            "GRAECOEN": null,
            "GRAECOFR": null,
            "GRAECOGE": null,
            "SOURCES": null,
            "MARKING": 0,
            "MOTOVOC2": "S 852",
            "DATEOFRECORD": null,
            "N-LECTICITY_EN": null,
            "N-LECTICITY_GR": null,
            "N-LECTICITY_FR": null,
            "SOURCE_UNIFORM": "S 852",
            "LINK": null
        }
    ],
    "system": {
        "messages": [],
        "status": 200,
        "status_text": "OK",
        "errors": [],
        "error_code": 0
    },
    "metadata": {
        "uid": 100000005,
        "database": "teleterm",
        "request": [],
        "count": 1
    }
}

Time: 3.19

select * from `TELETERM_TELETERM` where `TELETERM_TELETERM`.`RECNUM` = ? limit 1
Bindings
0: 5

Time: 0.28

select * from `STATISTICS` limit 1

Time: 2.41

update `STATISTICS` set `teleterm_searches` = `teleterm_searches` + 1 where `id` = ?
Bindings
0: 1

Request

Method: GET
Route: api/entry/index/uid/{uid}
Example: api/entry/index/uid/100000005
Route Parameter Pattern Requirement
uid [0-9]{9,12} Required
Request Headers
host: localhost:8000
accept: application/json
user-agent: Symfony
content-type: application/json
accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
content-length: 2
accept-language: en-us,en;q=0.5