Sesli Sözlük

Read-only

Translate and define words via Sesli Sözlük — English↔Turkish (and monolingual) dictionary senses with part-of-speech tags and bilingual example sentences. Generated from www.seslisozluk.net.

Base URL
https://api.maviapi.com/v1/sites/seslisozluk
1
Endpoints
1016ms
p50 latency
1
Calls / 30d
GET/search

Initial release

Translate or define a word. Returns dictionary senses (translations/definitions) tagged with their source dictionary, part-of-speech, and bilingual example sentences.

Bearer auth. Pass your key as Authorization: Bearer <key> on every request.
q
stringRequiredin query

The word or phrase to translate / define.

limit
integerOptionalin query

Max definitions to return (max 200).

offset
integerOptionalin query

Number of definitions to skip (pagination).

refresh
booleanOptionalin query

Bypass and repopulate the cache.

dataobject
cachedboolean
sourcestring
paginationobject
Try itLive
GET
https://api.maviapi.com/v1/sites/seslisozluk/search?q=book&limit=8&offset=0&refresh=false
Request
curl "https://api.maviapi.com/v1/sites/seslisozluk/search?q=book&limit=8&offset=0&refresh=false" \
-H "Authorization: Bearer $MAVI_KEY"
200 OKexample · 543 B
{
  "data": {
    "query": "book",
    "definitions": [
      {
        "dictionary": "English-Turkish",
        "pos": "{f}",
        "term": "kitap",
        "examples": [
          {
            "tr": "Bazıları yalnızca zaman geçsin diye kitap okurlar.",
            "en": "Some read books just to pass time."
          }
        ]
      }
    ]
  },
  "cached": false,
  "source": "https://www.seslisozluk.net/search/book",
  "pagination": {
    "total": 117,
    "limit": 8,
    "offset": 0,
    "count": 8,
    "has_more": true
  }
}