Interactive Explorer

API Explorer

Test queries against the NoviList public API schema interactively with GraphiQL.

GraphiQL Explorer

Full-featured GraphQL IDE

The full-featured GraphiQL explorer is hosted on the backend. Add either X-Application-Key or Authorization in GraphiQL's request-headers panel. The explorer targets only the public v1 schema; requests still use the normal scopes and rate limits.

Security Note

Because the bundled GraphiQL client retains its workspace in browser storage, use a non-shared browser profile and clear the header after use.

Open GraphiQL Explorer

Quick Start

Get authenticated in two steps

To use the explorer, you need either an application key or a user bearer token:

  1. 1 Application Key: Create a developer application in developer settings and copy the key when it's shown.
  2. 2 User Token: Complete the OAuth authorization flow for your application.

In the GraphiQL request-headers panel, add one of:

Headers
X-Application-Key: nvl_app_...
# or
Authorization: Bearer nvl_usr_...
Example Query
query SearchNovels {
  searchNovels(query: "mushoku", first: 5) {
    nodes {
      id
      title { english romanized native }
      status
      genres
      coverImage { medium }
    }
    totalCount
  }
}