Hi,
I use the API to integrate the documentation into my app. To load the navigation for the documentation, the requests I need to make can be upto 20 requests on page load.
If the API could just provide the full structure in one go e.g.
const solutions = =
{
id: 123123,
name: "General",
folders: :
{
id: 347282,
name: "Getting Started",
articles: :
{
id: 11445,
name: "Setting up your billing"
},
{
id: 32545,
name: "Adding your personal details"
}
]
}
]
}
]
Considering there's a rate limit on your API, and you charge more for requests. It seems a bit odd to be making so many requests for such little information.
Will have to move to a different product if this isn't implemented unfortunately.