GET /sources

Get a list of all sources used for pronoun data.

Responses

  • 200 application/json

    A JSON array of sources

    Hide response attributes Show response attributes object
    • id string Required
    • locale string Required
    • pronouns string Required
    • type string Required

      Values are Book, Article, or Website.

    • author string Required
    • title string Required
    • extra string Required
    • year integer Required
    • fragments string Required
    • comment string | null
    • submitter_id string Required
    • approved integer Required

      Values are 0 or 1.

    • deleted integer Required

      Values are 0 or 1.

    • base_id string | null
    • key string | null
    • images string | null
    • spoiler integer

      Values are 0 or 1.

    • submitter string Required
    • versions array[string | null]
  • 500 application/json

    Internal server error

    Hide response attribute Show response attribute object
    • error string
GET /sources
curl \
 --request GET 'https://pronouns.page/api/sources'
Response examples (200)
[
  {
    "id": "01ERQRCV0TW0E5SEGTKJ7KKE18",
    "key": null,
    "link": null,
    "type": "Book",
    "year": 2013,
    "extra": "A short story from a collection called “Crooked Words” by K. A. Cook",
    "title": "The Differently Animated and Queer Society",
    "author": "K. A. ^Cook",
    "images": null,
    "locale": "en",
    "base_id": null,
    "comment": null,
    "deleted": 0,
    "spoiler": 0,
    "approved": 1,
    "pronouns": "ze",
    "versions": [
      null
    ],
    "fragments": "Pat couldn’t help a slight frown as ze got out of hir car. It wasn’t likely that someone was going to try and mug a zombie, but even so, the neighbourhood didn’t seem all that prosperous. There weren’t even too many cars around, just one down the other end of the street and a rusty bike chained to a light post.|Maybe ze shouldn’t have waited until ze’d be the last to arrive. What if everyone had come, decided that nobody was coming, and gone home already? What if ze was the only one to come at all?@This will be fine, Pat told hirself, in what felt like a ridiculous attempt to bolster hir courage. If ze had summoned up the courage for hir last job interview—and Pat thought ze would have gotten it despite being undead if ze felt remotely inclined to try and pass, something that annoyed hir job seeker support officer no end—then ze could summon up the courage to do this. This should be easier than a job interview!",
    "submitter": "szymon",
    "submitter_id": "01EP5KZNBCCAD2024012HFMCR3"
  }
]
Response examples (500)
{
  "error": "Internal server error"
}