Sesli Sözlük

HealthyRead-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
0
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.
stringRequiredin query

The word or phrase to translate / define.

integerOptionalin query

Max definitions to return (max 200).

integerOptionalin query

Number of definitions to skip (pagination).

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"
Example543 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
  }
}

Get all the data, no code

Collect every page of GET /search into a dataset, then download it as CSV or JSON. One credit per page; the download is free.