Skip to main content
POST
/
content
/
most-used
Get content like verb, conjunction, position1, position2 most used.
curl --request POST \
  --url https://api.example.com/content/most-used \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "wordTypes": "v,c",
  "languageID": 1,
  "numRecords": 100
}
'
{
  "verbs": [
    {
      "id": 123,
      "value": "<string>"
    }
  ],
  "conjunctions": [
    {
      "id": 123,
      "value": "<string>"
    }
  ],
  "position1s": [
    {
      "id": 123,
      "value": "<string>"
    }
  ],
  "position2s": [
    {
      "id": 123,
      "value": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
wordTypes
string | null
default:v,c
languageID
integer<int32>
default:1
numRecords
integer<int32>
default:100

Response

Success

verbs
object[] | null
conjunctions
object[] | null
position1s
object[] | null
position2s
object[] | null