API Documentation
De’socialPlug Developer API
Powerful endpoints to integrate De’socialPlug's inventory directly into your applications, panels, and tools.
Getting Started
Welcome to the De’socialPlug Developer API. Our API allows you to programmatically browse available logs and purchase them using your wallet balance. All requests must be authenticated using your unique API key.
Authentication
Include your API key in the request headers for all API calls.
x-api-key: YOUR_API_KEY
1
Fetch Available Logs
Retrieve a list of all currently available logs grouped by platform and subcategory.
Endpoint
GET/api/public/logs
Query Parameters
platform(Optional) Filter by platform (e.g., Facebook, Instagram).subcategory(Optional) Filter by subcategory (e.g., Random, Real Active).
cURL Example
curl -X GET "https://desocialplug.com/api/public/logs?platform=Instagram" \ -H "x-api-key: YOUR_API_KEY"
2
Understanding the Structure
The API returns a nested object grouped by platform and subcategory.
JSON Response Schema
{
"instagram": {
"High Quality": [
{
"itemId": "67b09935...",
"name": "Instagram Aged Account",
"price": 500,
"availableLogsCount": 15,
"description": "2018-2020 Accounts",
"vpnType": "USA IP"
}
]
}
}itemIdUse this ID when making a purchase. It uniquely identifies the account listing.
availableLogsCountThe current stock volume available for immediate purchase.
3
Purchase Logs
Execute a purchase by providing the item ID and desired quantity.
Endpoint
POST/api/public/purchase
Request Body (JSON)
accountIdTheitemIdfrom the logs list.quantityNumber of logs to purchase.
Purchase Example
curl -X POST "https://desocialplug.com/api/public/purchase" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"accountId": "67b09935...",
"quantity": 5
}'Important Considerations
- • Ensure your wallet balance is sufficient for the total cost (price * quantity).
- • Purchased logs are returned immediately in the response body.
- • API keys rotate if you regenerate them in the dashboard; old keys will expire immediately.
Ready to start building?
Log in to your dashboard to generate your unique API key and start making requests today.
