1. Characters
GY Docs
  • Documentation
  • Data API
    • Characters
      • Get Character
        GET
      • List Characters
        GET
      • Page Characters
        GET
    • Creatures
      • Get Creature
      • List Creatures
      • Page Characters
    • Items
      • Get Item
      • List Items
      • Page Items
    • Worlds
      • Get World
      • Get Place
      • List Worlds
      • List Places
      • List Places by World
      • Page Worlds
      • Page Places
  • Management API
    • Characters
      • Insert Character
      • Update Character
      • Remove Character
    • Creatures
      • Insert Creature
      • Update Creature
      • Remove Creature
    • Items
      • Insert Item
      • Update Item
      • Remove Item
    • Worlds
      • Insert World
      • Update World
      • Remove World
      • Insert Place
      • Update Place
      • Remove Place
GY AccountsGY BooksHeralds of Chaos
GY AccountsGY BooksHeralds of Chaos
  1. Characters

Page Characters

GET
https://api.gycoding.com/heraldsofchaos/characters/page
Retrieves a paginated list of all the characters from the whole universe of Heralds of Chaos.

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.gycoding.com/heraldsofchaos/characters/page?page=&size=&lang='

Responses

🟢200Success
application/json
Body

Example
[
    {
        "identifier": "string",
        "name": "string",
        "title": "string",
        "description": "string",
        "race": "Æsir",
        "image": "http://example.com",
        "world": {
            "identifier": "string",
            "name": "string",
            "description": "string",
            "places": [
                {
                    "identifier": "string",
                    "name": "string",
                    "description": "string",
                    "image": "http://example.com"
                }
            ],
            "image": "http://example.com",
            "detailedIcon": "http://example.com"
        }
    }
]
🟠400Bad Request
🟠403Forbidden
🟠404Not Found
🟠405Method Not Allowed
🔴500Internal Error
Previous
List Characters
Next
Get Creature
Built with