GET /user/social-lookup/{provider}/{identifier}

Get the pronouns associated with a user based on their social media provider and identifier.

Path parameters

  • provider string Required

    The social media provider (e.g., "twitter", "github").

  • identifier string Required

    The unique identifier for the user on the specified social media platform.

Responses

  • 200 text/plain

    The external identifier of the user

  • 404 application/json

    User not found

    Hide response attribute Show response attribute object
    • error string
  • 500 application/json

    Internal server error

    Hide response attribute Show response attribute object
    • error string
GET /user/social-lookup/{provider}/{identifier}
curl \
 --request GET 'https://pronouns.page/api/user/social-lookup/{provider}/{identifier}'
Response examples (200)
therealbenpai
Response examples (404)
{
  "error": "User not found"
}
Response examples (500)
{
  "error": "Internal server error"
}