Missing Order Status URL In Orders GraphQL API

Hey Shopify,

How can I get order status url field using Orders GraphQL API ? I checked the fields but I’m unable to find order status url in graphql api

Thanks & Regards

see this thread: https://community.shopify.com/c/shopify-apis-and-sdks/graphql-order-object-missing-order-status-url/td-p/554931

It’s been missing since 2019

This thread is archived, is there any way to get access to this?

You may try: statusPageUrl

For examples:

curl -X POST \
  https://$shop.myshopify.com/admin/api/$api_version/graphql.json \
  -H 'Content-Type: application/graphql' \
  -H 'X-Shopify-Access-Token: '$shopify_token \
  -d '
    {
       orders(first: 20, query:"updated_at:>2025-04-12T23:39:20Z") {
        edges {
          node {
            id,
            email,
            statusPageUrl
          }
        }
      }
    }
'