PluralBuddyPluralBuddy
API References

Get a user's terminology

GET
/v1/users/{user}/terminology

Get specific data about a user's terminology. {user} can be @me to target the current OAuth user.

Authorization

oAuth2 system:read
AuthorizationBearer <token>

OAuth 2.1 authentication

In: header

Scope: system:read

Path Parameters

user*string

{user} is a Discord user Snowflake, or @me, referencing the current OAuth user.

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/users/string/terminology"
{  "alters": "alter",  "alters_plural": "alters",  "alters_capital": "Alter",  "tags": "tag",  "tags_plural": "tags",  "tags_capital": "Tag",  "system": "system",  "system_plural": "systems",  "system_capital": "System",  "display_tag": "display tag",  "proxy_tag": "proxy tag",  "proxy_tags_plural": "proxy tags",  "proxy_tags_capital": "Proxy Tags"}

How is this guide?