GET /inclusive/search/{id}

Get details of a specific inclusivity feature by its ID.

Path parameters

  • id integer Required

    The ID of the inclusivity feature.

Responses

  • 200 application/json

    A JSON object representing the inclusivity feature

    Hide response attributes Show response attributes object
    • id string Required
    • insteadOf string Required
    • say string Required
    • because string Required
    • locale string Required
    • approved integer Required

      Values are 0 or 1.

    • base_id string | null
    • author_id string | null
    • categories string Required
    • deleted integer Required

      Values are 0 or 1.

    • clarification string | null
    • author string | null
  • 404 application/json

    Feature 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 /inclusive/search/{id}
curl \
 --request GET 'https://pronouns.page/api/inclusive/search/{id}'
Response examples (200)
{
  "id": "01GYEG2T9H00PSTX8B0N7EWG6Z",
  "say": "he/she/they (formal)|he, she, or they (formal)|they (formal)",
  "links": [
    null
  ],
  "author": null,
  "locale": "en",
  "base_id": null,
  "because": "Putting “he/she” or “him/her” in a sentence where the person is hypothetical or the gender of the person is unknown assumes that the person it's referring to uses either he/him or she/her pronouns, which some people do not.\n",
  "deleted": 0,
  "approved": 1,
  "author_id": null,
  "insteadOf": "\"he/she\"|\"he or she\"",
  "categories": "transgender,intersex",
  "clarification": null
}
Response examples (404)
{
  "error": "Feature not found"
}
Response examples (500)
{
  "error": "Internal server error"
}