For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
      • Overview
          • QUERYaccount
          • QUERYnode
          • QUERYnodes
          • QUERYsystem
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAccountQueries

nodes

Example Query
1query ExampleQuery($ids: [String]) {
2 nodes(ids: $ids)
3}
Variables
1{
2 "ids": [
3 "example"
4 ]
5}
Example response
1{
2 "data": {
3 "nodes": [
4 {
5 "id": "example",
6 "accountId": "example",
7 "checkoutUrl": "example",
8 "items": {
9 "pageInfo": {
10 "hasNextPage": null,
11 "hasPreviousPage": null,
12 "startCursor": null,
13 "endCursor": null
14 },
15 "edges": [
16 {
17 "node": null,
18 "cursor": null
19 }
20 ]
21 },
22 "status": "COMPLETE"
23 }
24 ]
25 }
26}
Fetches objects given their IDs.
Was this page helpful?
Previous

node

Next

system

Built with

Arguments

idslist of StringsRequired
The IDs of the objects.

Returns

a list of optional Node
Checkoutobject

A container for all information needed to charge a Merchant for products on a one-time or recurring basis.

OR
Subscriptionobject

A one-time or recurring charge for a Product created as a result of a Merchant completing a Checkout.