Skip to content

Latest commit

 

History

History
74 lines (54 loc) · 1.74 KB

single.rst

File metadata and controls

74 lines (54 loc) · 1.74 KB

Single author

Retrieve the info of a certain author.

Request parameters

  • id (int) - The author's ID.

Example request

shell

curl -i http://example.com/api/v1/authors/1 -H 'If-None-Match: cf62b5e432293fc2b7cf32d5f100d415'

Example response

http

HTTP/1.1 200 OK Date: Tue, 28 Aug 2018 09:35:27 GMT Server: WSGIServer/0.2 CPython/3.7.0 Content-Type: application/json ETag: "03785faa8c59138c6c16155f51f53bba" X-Frame-Options: SAMEORIGIN Content-Length: 141

{

"id": 1, "name": "John Doe", "aliases": ["Johnnie Doe"], "series": [ { "slug": "some-manga", "title": "Some Manga", "aliases": ["Some Mango"] } ]

}

Response body

The response body is a JSON object which contains the following:

  • id (int) - The ID of the author.
  • name (string) - The name of the author.
  • aliases (array of string) - The author's other names.
  • series (array of object) - The author's series. Each object contains the following:

    • slug (slug) - The slug of the series.
    • title (string) - The title of the series.
    • aliases (array of string) - Other names for the series.