← Language & Poetry

Words That Sound Like

GET /words/sounds/:word

Find words that sound similar to the given word (homophones and near-homophones). Useful for spelling correction and pun generators.

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/words/sounds/flower

Live Response

{
  "data": [
    {
      "score": 100,
      "tags": null,
      "word": "flower"
    },
    {
      "score": 100,
      "tags": null,
      "word": "flour"
    },
    {
      "score": 97,
      "tags": null,
      "word": "floor"
    },
    {
      "score": 97,
      "tags": null,
      "word": "flor"
    },
    {
      "score": 97,
      "tags": null,
      "word": "flore"
    },
    {
      "score": 97,
      "tags": null,
      "word": "flohr"
    },
    {
      "score": 97,
      "tags": null,
      "word": "flaugher"
    },
    {
      "score": 95,
      "tags": null,
      "word": "flare"
    },
    {
      "score": 95,
      "tags": null,
      "word": "flair"
    },
    {
      "score": 95,
      "tags": null,
      "word": "flayer"
    }
  ],
  "success": true
}