GET
/
wordlist
curl --request GET \
  --url https://moderationapi.com/api/v1/wordlist \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "createdAt": "<string>",
    "userId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successful response
id
string
required

Unique identifier of the wordlist

name
string | null
required

Name of the wordlist

createdAt
string | null
required

When the wordlist was created

userId
string | null
required

User who created the wordlist

Was this page helpful?