Documentation

API URL


POST /v1/lookup, POST /v1/lookup

Headers
Code
Content-Type: application/json
Body Parameters


Example Request

Code
{
  "term": "fast",
  "limit": 5
}

Successful Response

Status
HTML
200 OK
Body
Code
{
  "query": {
    "term": "fast",
    "relation": "synonym",
    "limit": 5
  },
  "results": [
    {
      "term": "quick",
      "pos": "adj"
    },
    {
      "term": "rapid",
      "pos": "adj"
    }
  ],
  "page": {
    "limit": 5,
    "offset": 0,
    "total_estimate": 4
  }
}

Error Response

Example
Code
400 bad_request – Invalid or missing parameters
404 not_found – Route not found
429 rate_limit – Too many requests
500 server_error – Internal server error

Last Updated:  May 4, 2026