Start selling with VUAO in under 10 minutes
Become part of the new wave of internet entrepreneurs who are constructing their enterprises using VUAO's comprehensive platform.

Deploy faster
A developer friendly API
Incorporate VUAO's payment, membership, and order fulfillment capabilities seamlessly into your software using only a minimal amount of code.
- Easy organisation
- The VUAO API is crafted by developers, with developers in mind. Our set of fundamental tools simplifies the management of your memberships, payments, and various other functions.
- Fully secure
- Our commitment to security ensures that your API interactions remain safeguarded and protected at all times.
Javascript
import axios from 'axios'
const getMembership = async () => {
try {
const response = await axios.get(
`https://api.vuao.com/api/v1/
memberships/mem_**********`,
{
headers: {
Authorization: `Bearer ${accessToken}`,
},
}
)
return response.data
} catch (error) {
throw error
}
}
export default getMembership