Supernet
  • Supernet|Guides
  • Multi-Agent Collaboration
    • Overview
    • Best Route
  • Decentralized GPU System
  • Whitepaper
    • Whitepaper of Supernet
  • distributed network
    • Supernet | Introduction
    • AI Operating System
      • Transformer Decoder Architecture
      • LLM OS
    • AI OS Design
      • Decentralize Validator
      • Decentralize Storage
    • TEE-Enhanced Design
    • AVS of Agent
    • Fault Tolerance
  • Product
    • Supernet | Intelligent Node
    • Supernet | AI OS SDK
    • Supernet | AI Explorer
    • Supernet | Agent Studio
    • Supernet | Public API
Powered by GitBook
On this page
  1. Product

Supernet | Public API

The API interface provides developers with a more convenient experience.

PreviousSupernet | Agent Studio

Last updated 5 months ago

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
400
Invalid ID supplied
404
Order not found
default
Unexpected error
get
GET /api/v3/store/order/{orderId} HTTP/1.1
Host: 
Accept: */*
{
  "id": 10,
  "petId": 198772,
  "quantity": 7,
  "shipDate": "2025-05-27T19:17:16.674Z",
  "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
400
Invalid ID supplied
404
Order not found
default
Unexpected error
delete
DELETE /api/v3/store/order/{orderId} HTTP/1.1
Host: 
Accept: */*

No content

  • GETFind purchase order by ID.
  • DELETEDelete purchase order by identifier.