Documentation

Introduction

The Yash12007 API Platform allows developers to store and retrieve data using a simple, secure, and scalable REST interface. Each user is assigned a private Data Space where all application data lives.

Core Features
  • Unlimited JSON structure support
  • Single data space per user
  • No schema or field restriction
  • Usage-based billing
  • Fast read/write operations
  • Secure token authentication
Data Storage Model

Each account has a private data space. You do not manage tables, keys, or collections.

            /account/{clientId}/data
            /account/{clientId}/usage
            

All data is stored exactly as sent, without modification or validation.

Storing Data

You can store any JSON structure, including deeply nested or dynamic data.

            POST /store
            Headers:
            x-client-id: YOUR_CLIENT_ID
            x-client-secret: YOUR_SECRET

            Body:
            [
            {
                "": "",
                "": [
                "",
                {
                    "": ""
                }
                ]
            }
            ]
            
Response
            {
            "success": true,
            "cost": 1.0004
            }
            
Fetching Data

Fetching returns the full stored data. No keys, attributes, or object IDs are required.

            GET /fetch
            Headers:
            x-client-id: YOUR_CLIENT_ID
            x-client-secret: YOUR_SECRET
            
Response
            {
                "data": {
                    "name": "John Doe",
                    "company": "ABC Technologies",
                    "age": 21
                },
                "cost": 0.5002
            }
            
Important Notes
  • No key-based fetching
  • No attribute-level queries
  • Entire data space is returned
  • Lower size = lower cost
Usage-Based Pricing

Charges depend on:

  • Size of stored data
  • Read/write frequency
  • API usage volume

Smaller payloads consume fewer credits.

Authentication
            x-client-id
            x-client-secret
            

Requests without valid credentials are rejected automatically.

Fair Usage Policy

Excessive usage may be rate-limited. Inactive accounts may be paused after 30 days.

Support

Need help? Contact Support