### Get Service List Example Response (JSON) Source: https://thelordofthepanels.com/api/v2/api This JSON structure represents the example response when requesting the service list from the API. It includes details for each service such as ID, name, type, category, pricing, limits, and refill/cancel options. ```json [ { "service": 1, "name": "Followers", "type": "Default", "category": "First Category", "rate": "0.90", "min": "50", "max": "10000", "refill": true, "cancel": true }, { "service": 2, "name": "Comments", "type": "Custom Comments", "category": "Second Category", "rate": "8", "min": "10", "max": "1500", "refill": false, "cancel": true } ] ``` -------------------------------- ### Example Response Details Source: https://thelordofthepanels.com/api/v2/api Provides details on the structure of example responses for various API calls, including status, charge, and error information. ```APIDOC ## Response Structure Examples ### General Order Status Example This structure is returned when querying the status of orders, potentially including errors for specific orders. #### Response Example ```json { "1": { "charge": "0.27819", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "USD" }, "10": { "error": "Incorrect order ID" }, "100": { "charge": "1.44219", "start_count": "234", "status": "In progress", "remains": "10", "currency": "USD" } } ``` ``` -------------------------------- ### Get Order Status Source: https://thelordofthepanels.com/api/v2/api Retrieves the status of a specific order. Requires the API key and the order ID. ```api POST /api/v2 Parameters: key: Your API key action: status order: Order ID ``` -------------------------------- ### Get Multiple Orders Status Source: https://thelordofthepanels.com/api/v2/api Retrieves the status for multiple orders. Requires the API key and a comma-separated list of order IDs (up to 100 IDs). ```api POST /api/v2 Parameters: key: Your API key action: status orders: Order IDs (separated by a comma, up to 100 IDs) ``` -------------------------------- ### Get Refill Status Source: https://thelordofthepanels.com/api/v2/api Retrieves the status of a specific refill using its refill ID. ```APIDOC ## POST /api/v2/refill_status ### Description Retrieves the status of a specific refill using its refill ID. ### Method POST ### Endpoint /api/v2/refill_status ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'refill_status' - **refill** (string) - Required - The ID of the refill to check ### Request Example ```json { "key": "YOUR_API_KEY", "action": "refill_status", "refill": "REFILL_ID" } ``` ### Response #### Success Response (200) - **status** (string) - The status of the refill (e.g., 'Completed', 'In progress'). #### Response Example ```json { "status": "Completed" } ``` ``` -------------------------------- ### Get Multiple Refill Statuses Source: https://thelordofthepanels.com/api/v2/api Retrieves the statuses of multiple refills using their refill IDs. Accepts a comma-separated list of refill IDs. ```APIDOC ## POST /api/v2/refill_status ### Description Retrieves the statuses of multiple refills using their refill IDs. Accepts a comma-separated list of refill IDs (up to 100). ### Method POST ### Endpoint /api/v2/refill_status ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'refill_status' - **refills** (string) - Required - Refill IDs separated by a comma (up to 100 IDs) ### Request Example ```json { "key": "YOUR_API_KEY", "action": "refill_status", "refills": "1,2,3,4" } ``` ### Response #### Success Response (200) - **refill** (integer) - The refill ID. - **status** (string or object) - The status of the refill. If successful, it's a string; if an error occurs, it's an object with an 'error' field. #### Response Example ```json [ { "refill": 1, "status": "Completed" }, { "refill": 2, "status": "Rejected" }, { "refill": 3, "status": { "error": "Refill not found" } } ] ``` ``` -------------------------------- ### Add Order - Basic Source: https://thelordofthepanels.com/api/v2/api Adds a basic order with essential parameters. Requires API key, service ID, link, and quantity. Optional parameters include runs and interval for delivery. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity runs (optional): Runs to deliver interval (optional): Interval in minutes ``` -------------------------------- ### POST /api/v2 - Service List Source: https://thelordofthepanels.com/api/v2/api Retrieves a list of available services from the API. Requires an API key and specifies the 'services' action. ```APIDOC ## POST /api/v2/services ### Description Retrieves a list of available services from the API. This endpoint requires an API key for authentication and specifies the 'services' action to get the service list. ### Method POST ### Endpoint https://thelordofthepanels.com/api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key for authentication. - **action** (string) - Required - Must be set to 'services' to retrieve the service list. ### Request Example ```json { "key": "YOUR_API_KEY", "action": "services" } ``` ### Response #### Success Response (200) - **service** (integer) - The unique identifier for the service. - **name** (string) - The name of the service. - **type** (string) - The type of the service. - **category** (string) - The category the service belongs to. - **rate** (string) - The rate or price per unit of the service. - **min** (string) - The minimum quantity allowed for the service. - **max** (string) - The maximum quantity allowed for the service. - **refill** (boolean) - Indicates if the service supports refills. - **cancel** (boolean) - Indicates if the service can be canceled. #### Response Example ```json [ { "service": 1, "name": "Followers", "type": "Default", "category": "First Category", "rate": "0.90", "min": "50", "max": "10000", "refill": true, "cancel": true }, { "service": 2, "name": "Comments", "type": "Custom Comments", "category": "Second Category", "rate": "8", "min": "10", "max": "1500", "refill": false, "cancel": true } ] ``` ``` -------------------------------- ### Create Refill Source: https://thelordofthepanels.com/api/v2/api Initiates a refill for a specified order. Requires an API key and the order ID. ```APIDOC ## POST /api/v2/refill ### Description Initiates a refill for a specified order. ### Method POST ### Endpoint /api/v2/refill ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'refill' - **order** (string) - Required - The ID of the order to refill ### Request Example ```json { "key": "YOUR_API_KEY", "action": "refill", "order": "ORDER_ID" } ``` ### Response #### Success Response (200) - **refill** (string) - Indicates the success of the refill operation (e.g., '1' for success). #### Response Example ```json { "refill": "1" } ``` ``` -------------------------------- ### Add Order - SEO Source: https://thelordofthepanels.com/api/v2/api Adds an order for SEO services. Includes parameters for keywords, allowing for targeted delivery based on specific search terms. Keywords should be separated by newline characters. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity keywords: Keywords list separated by \r\n or \n ``` -------------------------------- ### Add Order - Default Package Source: https://thelordofthepanels.com/api/v2/api Adds a default package order. This could be for general services like SEO, custom comments, or mentions. ```APIDOC ## POST /api/v2 ### Description Adds a default package order for various services. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **runs** (integer) - Optional - Number of runs for delivery - **interval** (integer) - Optional - Interval in minutes for delivery ``` -------------------------------- ### User Balance Source: https://thelordofthepanels.com/api/v2/api Retrieves the current user balance and currency. ```APIDOC ## POST /api/v2/balance ### Description Retrieves the current user balance and currency. ### Method POST ### Endpoint /api/v2/balance ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'balance' ### Request Example ```json { "key": "YOUR_API_KEY", "action": "balance" } ``` ### Response #### Success Response (200) - **balance** (string) - The current balance amount. - **currency** (string) - The currency of the balance (e.g., 'USD'). #### Response Example ```json { "balance": "100.84292", "currency": "USD" } ``` ``` -------------------------------- ### Add Order - Subscription Source: https://thelordofthepanels.com/api/v2/api Adds a subscription order with options to limit new and existing posts. Includes delay and expiry date parameters for flexible subscription management. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity username: Username min: Quantity min max: Quantity max posts (optional): Limit for new posts old_posts (optional): Number of existing posts to parse delay: Delay in minutes expiry (optional): Expiry date in d/m/Y format ``` -------------------------------- ### Create Multiple Refills Source: https://thelordofthepanels.com/api/v2/api Initiates refills for multiple orders simultaneously. Accepts a comma-separated list of order IDs. ```APIDOC ## POST /api/v2/refill ### Description Initiates refills for multiple orders simultaneously. Accepts a comma-separated list of order IDs (up to 100). ### Method POST ### Endpoint /api/v2/refill ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'refill' - **orders** (string) - Required - Order IDs separated by a comma (up to 100 IDs) ### Request Example ```json { "key": "YOUR_API_KEY", "action": "refill", "orders": "1,2,3,4" } ``` ### Response #### Success Response (200) - **order** (integer) - The order ID. - **refill** (integer or object) - The refill status. If successful, it's an integer; if an error occurs, it's an object with an 'error' field. #### Response Example ```json [ { "order": 1, "refill": 1 }, { "order": 2, "refill": 2 }, { "order": 3, "refill": { "error": "Incorrect order ID" } } ] ``` ``` -------------------------------- ### Add Order - Invites from Groups Source: https://thelordofthepanels.com/api/v2/api Adds an order for invites sent from groups. ```APIDOC ## POST /api/v2 ### Description Adds an order for invites to be sent from specified groups. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **groups** (string) - Required - A list of group IDs or links separated by newline characters (\r\n or \n) ``` -------------------------------- ### Add Order - Scrape Followers/Likers Source: https://thelordofthepanels.com/api/v2/api Adds an order to scrape followers from a username or likers from a media URL. Requires the target username or media URL and optionally a quantity. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity username: URL to scrape followers from ``` ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity media: Media URL to scrape likers from ``` -------------------------------- ### Add Order - Custom Comments Package Source: https://thelordofthepanels.com/api/v2/api Adds an order for a custom comments package. ```APIDOC ## POST /api/v2 ### Description Adds an order for a custom comments package, allowing specific comments to be provided. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **comments** (string) - Required - A list of comments separated by newline characters (\r\n or \n) ``` -------------------------------- ### Add Order - Subscriptions Source: https://thelordofthepanels.com/api/v2/api Adds a subscription order, which can include options for limiting posts and setting delays. ```APIDOC ## POST /api/v2 ### Description Adds a subscription order, which can be configured with limits on new and old posts, and delivery delays. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **runs** (integer) - Optional - Number of runs to deliver - **interval** (integer) - Optional - Interval in minutes for delivery - **posts** (integer) - Optional - Limit on the number of new posts to parse - **old_posts** (integer) - Optional - Number of existing posts to parse - **delay** (integer) - Required - Delay in minutes (e.g., 0, 5, 10, 15, 20, 30, 40, 50, 60, 90, 120, 150, 180, 210, 240, 270, 300, 360, 420, 480, 540, 600) - **expiry** (string) - Optional - Expiry date in 'd/m/Y' format ``` -------------------------------- ### Add Order - Group Invites Source: https://thelordofthepanels.com/api/v2/api Adds an order for group invites. Requires a list of groups, separated by newline characters, to which invites will be sent. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity groups: Groups list separated by \r\n or \n ``` -------------------------------- ### Add Order - Username Mentions Source: https://thelordofthepanels.com/api/v2/api Adds an order for mentions targeted at specific usernames. ```APIDOC ## POST /api/v2 ### Description Adds an order for mentions, targeting a provided list of usernames. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **username** (string) - Required - The username to target for mentions ``` -------------------------------- ### Add Order - SEO Custom Comments Source: https://thelordofthepanels.com/api/v2/api Adds an order for SEO custom comments. ```APIDOC ## POST /api/v2 ### Description Adds an order specifically for SEO custom comments. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **comments** (string) - Required - A list of comments separated by newline characters (\r\n or \n) ``` -------------------------------- ### Add Order - User Followers Mentions Source: https://thelordofthepanels.com/api/v2/api Adds an order for mentions targeted at user followers. ```APIDOC ## POST /api/v2 ### Description Adds an order for mentions targeted at the followers of a specific user. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **usernames** (string) - Required - A list of usernames separated by newline characters (\r\n or \n) ``` -------------------------------- ### Add Order - Web Traffic Source: https://thelordofthepanels.com/api/v2/api Adds an order for web traffic. Supports various traffic types including Google Keyword, Custom Referrer, and Blank Referrer. Requires specific parameters based on the traffic type. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity runs (optional): Runs to deliver interval (optional): Interval in minutes country: Country code or full country name device: Device type (1-Desktop, 2-Mobile Android, 3-Mobile IOS, 4-Mixed Mobile, 5-Mixed Mobile & Desktop) type_of_traffic: Traffic type (1-Google Keyword, 2-Custom Referrer, 3-Blank Referrer) google_keyword: Required if type_of_traffic = 1 referring_url: Required if type_of_traffic = 2 ``` -------------------------------- ### Add Order - Mentions Source: https://thelordofthepanels.com/api/v2/api Adds an order for mentions. This can be targeted by usernames or hashtags. Usernames and hashtags should be provided as lists separated by newline characters. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity usernames: Usernames list separated by \r\n or \n ``` ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page usernames: Usernames list separated by \r\n or \n hashtags: Hashtags list separated by \r\n or \n ``` -------------------------------- ### Add Order - Web Traffic Source: https://thelordofthepanels.com/api/v2/api Adds an order for web traffic, with options for country, device, and traffic type. ```APIDOC ## POST /api/v2 ### Description Adds an order for web traffic, allowing customization of country, device, and traffic source. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **runs** (integer) - Optional - Runs to deliver - **interval** (integer) - Optional - Interval in minutes - **country** (string) - Required - Country code or full country name (e.g., 'US' or 'United States') - **device** (integer) - Required - Device type: 1 - Desktop, 2 - Mobile (Android), 3 - Mobile (IOS), 4 - Mixed (Mobile), 5 - Mixed (Mobile & Desktop) - **type_of_traffic** (integer) - Required - Traffic type: 1 - Google Keyword, 2 - Custom Referrer, 3 - Blank Referrer - **google_keyword** (string) - Required if type_of_traffic is 1 - **referring_url** (string) - Required if type_of_traffic is 2 ``` -------------------------------- ### Add Order - Custom Comments Source: https://thelordofthepanels.com/api/v2/api Adds an order for custom comments. Requires a list of comments, separated by newline characters, to be delivered to the specified link. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page comments: Comments list separated by \r\n or \n ``` -------------------------------- ### Add Order - Mentions User Followers Source: https://thelordofthepanels.com/api/v2/api Adds an order for mentions targeted at users who liked a specific media. ```APIDOC ## POST /api/v2 ### Description Adds an order for mentions, targeting users who have liked a specific media post. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **media** (string) - Required - The URL of the media to scrape likers from ``` -------------------------------- ### Add Order - Custom Comments Source: https://thelordofthepanels.com/api/v2/api Adds an order for custom comments, where the comments are provided as a list. ```APIDOC ## POST /api/v2 ### Description Adds an order for custom comments, allowing users to specify the exact comments to be used. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **comments** (string) - Required - A list of comments separated by newline characters (\r\n or \n) ``` -------------------------------- ### Add Order - Mentions Source: https://thelordofthepanels.com/api/v2/api Adds an order for mentions, which can be targeted by custom lists or hashtags. ```APIDOC ## POST /api/v2 ### Description Adds an order for mentions, allowing targeting via custom lists or hashtags. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **usernames** (string) - Required - A list of usernames separated by newline characters (\r\n or \n) - **hashtags** (string) - Optional - A list of hashtags separated by newline characters (\r\n or \n) ``` -------------------------------- ### Add Order - Mentions Hashtag Source: https://thelordofthepanels.com/api/v2/api Adds an order for mentions scraped from a specific hashtag. ```APIDOC ## POST /api/v2 ### Description Adds an order for mentions, where the target usernames are scraped from a given hashtag. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **hashtag** (string) - Required - The hashtag to scrape usernames from ``` -------------------------------- ### Add Order - Poll Comment Replies Source: https://thelordofthepanels.com/api/v2/api Adds an order for replies to poll comments. ```APIDOC ## POST /api/v2 ### Description Adds an order for replies to specific poll comments. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'add' - **service** (string) - Required - Service ID - **link** (string) - Required - Link to the target page - **quantity** (integer) - Required - The desired quantity for the service - **answer_number** (integer) - Required - The answer number of the poll to reply to ``` -------------------------------- ### Multiple Orders Status Source: https://thelordofthepanels.com/api/v2/api Retrieves the status of multiple orders. ```APIDOC ## POST /api/v2 ### Description Retrieves the current status for multiple orders simultaneously. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'status' - **orders** (string) - Required - A comma-separated list of order IDs (up to 100 IDs) ### Response #### Success Response (200) - **charge** (string) - The cost of the order. - **start_count** (string) - The initial count when the order started. - **status** (string) - The current status of the order (e.g., 'Partial', 'Completed'). - **remains** (string) - The remaining quantity for the order. - **currency** (string) - The currency used for the charge. #### Response Example ```json { "charge": "0.27819", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "USD" } ``` ``` -------------------------------- ### Create Cancel Order Source: https://thelordofthepanels.com/api/v2/api Cancels one or more orders. Accepts a comma-separated list of order IDs. ```APIDOC ## POST /api/v2/cancel ### Description Cancels one or more orders. Accepts a comma-separated list of order IDs (up to 100). ### Method POST ### Endpoint /api/v2/cancel ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'cancel' - **orders** (string) - Required - Order IDs separated by a comma (up to 100 IDs) ### Request Example ```json { "key": "YOUR_API_KEY", "action": "cancel", "orders": "1,2,3,4" } ``` ### Response #### Success Response (200) - **order** (integer) - The order ID. - **cancel** (integer or object) - The cancellation status. If successful, it's an integer (e.g., 1); if an error occurs, it's an object with an 'error' field. #### Response Example ```json [ { "order": 9, "cancel": { "error": "Incorrect order ID" } }, { "order": 2, "cancel": 1 } ] ``` ``` -------------------------------- ### Order Status Source: https://thelordofthepanels.com/api/v2/api Retrieves the status of a specific order. ```APIDOC ## POST /api/v2 ### Description Retrieves the current status of a specified order. ### Method POST ### Endpoint /api/v2 ### Parameters #### Query Parameters - **key** (string) - Required - Your API key - **action** (string) - Required - Must be 'status' - **order** (integer) - Required - The ID of the order to check ### Response #### Success Response (200) - **charge** (string) - The cost of the order. - **start_count** (string) - The initial count when the order started. - **status** (string) - The current status of the order (e.g., 'Partial', 'Completed'). - **remains** (string) - The remaining quantity for the order. - **currency** (string) - The currency used for the charge. #### Response Example ```json { "charge": "0.27819", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "USD" } ``` ``` -------------------------------- ### Add Order - Poll Comments Source: https://thelordofthepanels.com/api/v2/api Adds an order for poll comments. Requires the answer number of the poll and optionally a username of the comment owner. Comments should be provided as a list separated by newlines. ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page comments: Comments list separated by \r\n or \n ``` ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity username: Username of the comment owner ``` ```api POST /api/v2 Parameters: key: Your API key action: add service: Service ID link: Link to page quantity: Needed quantity answer_number: Answer number of the poll ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.