Skip to content

Is /api/v3/graphql available? Getting 404 on all v3 endpoints, unable to query dustGenerationStatus. #597

@TranHuyHiep

Description

@TranHuyHiep

Hi team,
I'm trying to work with the Midnight Indexer API v3, but I’m not sure whether the /api/v3/graphql endpoint is actually available in the current Docker images.

My environment:

  • Indexer API images tried:
    • midnightntwrk/indexer-api:3.0.0-alpha.19
    • midnightntwrk/indexer-api:latest
  • Midnight node: midnightnetwork/midnight-node:latest
  • Chain indexer + wallet: both using latest
    Network: testnet-02

Problem:
Every request to the v3 endpoint results in: 404 Not Found

Endpoints tested:

  • /api/v3/graphql → 404
  • /api/v3 → 404
  • /api/graphql → 404
  • /api/v1/graphql → works, but does not include the v3 fields

/api/v1 → OK

curl -v -X POST http://<host_ip>:<port>/api/v3/graphql   -H "Content-Type: applica
tion/json"   -d '{
    "query": "query { block(offset: { height: 3 }) { hash height timestamp protocolVersion }}",
    "variables": {
      "hash": "554bda62777feeb74abb54481a797cf6fd4a5c5a54608e6c8db32ac22bd16dde"
    }
  }'

My result:

> POST /api/v3/graphql HTTP/1.1
> Host: <host_ip>:<port>
> User-Agent: curl/8.5.0
> Accept: */*
> Content-Type: application/json
> Content-Length: 207
> 
< HTTP/1.1 404 Not Found
< vary: origin, access-control-request-method, access-control-request-headers
< access-control-allow-origin: *
< access-control-expose-headers: *
< content-length: 0
< date: Fri, 12 Dec 2025 13:50:58 GMT
< 

Questions

  • Has /api/v3/graphql been released in the current Docker images?
  • The docs say v3 is the current API, but I cannot find it in the images.

If v3 is available:

  • Which exact image tag contains the v3 schema and endpoint?
  • Is there any configuration flag required to enable v3 support?

If v3 is not yet deployed:

  • Is there an expected release timeline?
  • Should we continue using v1 for now?

Thanks team — just want to confirm the status of v3 and the proper way to access the new fields.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions