Supernet | Public API

The API interface provides developers with a more convenient experience.

SuperNet API provides a powerful and flexible interface for developers to interact with the SuperNet ecosystem. It enables seamless integration with AI OS, decentralized validators, and AI Agent Studio, offering comprehensive support for creating, managing, and deploying AI agents.

With endpoints designed for querying system data, managing agents, and accessing AIoT features, the API simplifies complex operations while ensuring security and scalability. Whether you're building innovative applications or enhancing existing solutions, SuperNet API is the key to unlocking the full potential of a decentralized, AI-driven network.

Find purchase order by ID.

get

For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions.

Path parameters
orderIdinteger · int64Required

ID of order that needs to be fetched

Responses
200
successful operation
get
GET /api/v3/store/order/{orderId} HTTP/1.1
Host: 
Accept: */*
{
  "id": 10,
  "petId": 198772,
  "quantity": 7,
  "shipDate": "2025-07-13T14:15:37.036Z",
  "status": "approved",
  "complete": true
}

Delete purchase order by identifier.

delete

For valid response try integer IDs with value < 1000. Anything above 1000 or non-integers will generate API errors.

Path parameters
orderIdinteger · int64Required

ID of the order that needs to be deleted

Responses
200
order deleted
delete
DELETE /api/v3/store/order/{orderId} HTTP/1.1
Host: 
Accept: */*

No content

Last updated