### POST /api/v2 - Get Services Source: https://justanotherpanel.com/api Retrieves a list of all available services provided by the platform. ```APIDOC ## POST /api/v2 ### Description Retrieves the list of available services including their rates, categories, and limitations. ### Method POST ### Endpoint https://justanotherpanel.com/api/v2 ### Parameters #### Request Body - **key** (string) - Required - Your API key - **action** (string) - Required - Set to "services" ### Request Example { "key": "your_api_key", "action": "services" } ### Response #### Success Response (200) - **service** (integer) - Service ID - **name** (string) - Service name - **type** (string) - Service type - **category** (string) - Category name - **rate** (string) - Price per unit - **min** (string) - Minimum quantity - **max** (string) - Maximum quantity #### Response Example [ { "service": 1, "name": "Followers", "type": "Default", "category": "First Category", "rate": "0.90", "min": "50", "max": "10000" } ] ``` -------------------------------- ### Get User Balance Source: https://justanotherpanel.com/api Retrieves the current balance of the user's account. ```APIDOC ## GET /api/v2/balance ### Description Retrieves the current balance of the user's account. ### Method GET ### Endpoint /api/v2/balance ### Parameters #### Query Parameters - **key** (string) - Required - Your API key. - **action** (string) - Required - Must be set to 'balance'. ### Response #### Success Response (200) - **balance** (string) - The current account balance. - **currency** (string) - The currency of the balance. #### Response Example ```json { "balance": "100.84292", "currency": "USD" } ``` ``` -------------------------------- ### Add Order for Media Likers Service Source: https://justanotherpanel.com/api Adds an order to get likers for a specific media post. Requires your API key, service ID, link to the media, and the quantity of likers. This service scrapes users who liked the specified media. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "quantity": "Needed quantity", "media": "Media URL to scrape likers from" } ``` -------------------------------- ### POST /api/v2 - Get Order Status Source: https://justanotherpanel.com/api Checks the current status of an existing order. ```APIDOC ## POST /api/v2 ### Description Retrieves the status of a specific order. ### Method POST ### Endpoint https://justanotherpanel.com/api/v2 ### Parameters #### Request Body - **key** (string) - Required - Your API key - **action** (string) - Required - Set to "status" - **order** (integer) - Required - The order ID ### Request Example { "key": "your_api_key", "action": "status", "order": 23501 } ### Response #### Success Response (200) - **status** (string) - Current status of the order - **remains** (string) - Remaining quantity - **start_count** (string) - Initial count ``` -------------------------------- ### Get Order Status Source: https://justanotherpanel.com/api Retrieves the status of a specific order or multiple orders. Supports fetching status for up to 100 orders at once. ```APIDOC ## GET /api/v2/order ### Description Retrieves the status of a specific order or multiple orders. Supports fetching status for up to 100 orders at once. ### Method GET ### Endpoint /api/v2/order ### Parameters #### Query Parameters - **key** (string) - Required - Your API key. - **action** (string) - Required - Must be set to 'status'. - **order** (string) - Optional - The ID of a single order to retrieve status for. - **orders** (string) - Optional - A comma-separated list of order IDs (up to 100) to retrieve status for. ### Response #### Success Response (200) - **charge** (string) - The charge amount for the order. - **start_count** (string) - The starting count for the order. - **status** (string) - The current status of the order (e.g., 'Partial', 'In progress'). - **remains** (string) - The remaining count for the order. - **currency** (string) - The currency of the charge. For multiple orders, the response is a JSON object where keys are order IDs and values are order status objects or error messages. #### Response Example (Single Order) ```json { "charge": "0.27819", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "USD" } ``` #### Response Example (Multiple Orders) ```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 from JustAnotherPanel API v2 Source: https://justanotherpanel.com/api Retrieves the status of a previously placed order. This action requires your API key and the order ID for which the status is requested. The response will contain details about the current state of the order. ```json { "key": "Your API key", "action": "status" } ``` -------------------------------- ### Get Refill Status Source: https://justanotherpanel.com/api Retrieves the status of a specific refill or multiple refills. Supports fetching status for up to 100 refills at once. ```APIDOC ## GET /api/v2/refill/status ### Description Retrieves the status of a specific refill or multiple refills. Supports fetching status for up to 100 refills at once. ### Method GET ### Endpoint /api/v2/refill/status ### Parameters #### Query Parameters - **key** (string) - Required - Your API key. - **action** (string) - Required - Must be set to 'refill_status'. - **refill** (string) - Optional - The ID of a single refill to retrieve status for. - **refills** (string) - Optional - A comma-separated list of refill IDs (up to 100) to retrieve status for. ### Response #### Success Response (200) - **status** (string) - The status of the refill (e.g., 'Completed', 'Rejected'). For multiple refills, the response is an array of objects, each containing 'refill' ID and its 'status'. #### Response Example (Single Refill) ```json { "status": "Completed" } ``` #### Response Example (Multiple Refills) ```json [ { "refill": 1, "status": "Completed" }, { "refill": 2, "status": "Rejected" }, { "refill": 3, "status": { "error": "Refill not found" } } ] ``` ``` -------------------------------- ### Create Refill Source: https://justanotherpanel.com/api Initiates a refill for a specific order or multiple orders. Supports refilling up to 100 orders at once. ```APIDOC ## POST /api/v2/refill ### Description Initiates a refill for a specific order or multiple orders. Supports refilling up to 100 orders at once. ### Method POST ### Endpoint /api/v2/refill ### Parameters #### Request Body - **key** (string) - Required - Your API key. - **action** (string) - Required - Must be set to 'refill'. - **order** (string) - Optional - The ID of a single order to refill. - **orders** (string) - Optional - A comma-separated list of order IDs (up to 100) to refill. ### Request Example (Single Order) ```json { "key": "YOUR_API_KEY", "action": "refill", "order": "12345" } ``` ### Request Example (Multiple Orders) ```json { "key": "YOUR_API_KEY", "action": "refill", "orders": "1,2,3" } ``` ### Response #### Success Response (200) - **refill** (string) - Indicates the success of the refill operation. For single orders, it might be '1' for success. For multiple orders, it's an array of objects, each containing 'order' and 'refill' status. #### Response Example (Single Order) ```json { "refill": "1" } ``` #### Response Example (Multiple Orders) ```json [ { "order": 1, "refill": 1 }, { "order": 2, "refill": 2 }, { "order": 3, "refill": { "error": "Incorrect order ID" } } ] ``` ``` -------------------------------- ### POST /api/v2 - Add Order Source: https://justanotherpanel.com/api Places a new order for a specific service using the required parameters. ```APIDOC ## POST /api/v2 ### Description Creates a new order. Parameters vary based on the service type selected. ### Method POST ### Endpoint https://justanotherpanel.com/api/v2 ### Parameters #### Request Body - **key** (string) - Required - Your API key - **action** (string) - Required - Set to "add" - **service** (integer) - Required - Service ID - **link** (string) - Required - Target URL - **quantity** (integer) - Optional - Required for most services ### Request Example { "key": "your_api_key", "action": "add", "service": 1, "link": "https://example.com/post", "quantity": 100 } ### Response #### Success Response (200) - **order** (integer) - The unique ID of the created order #### Response Example { "order": 23501 } ``` -------------------------------- ### List Services from JustAnotherPanel API v2 Source: https://justanotherpanel.com/api Retrieves a list of available services from the JustAnotherPanel API. This action requires an API key and returns a JSON array of service objects, each detailing its ID, name, category, pricing, and availability. ```json { "key": "Your API key", "action": "services" } ``` -------------------------------- ### Add Order for Subscription Service Source: https://justanotherpanel.com/api Adds a subscription order for services like comments or mentions. Requires API key, service ID, link, and quantity. Optional parameters include 'posts' for limiting future posts, 'old_posts' for existing posts, 'delay', 'expiry', and 'username' for comment owner. ```json { "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": "Use this parameter if you want to limit the number of new (future) posts that will be parsed and for which orders will be created. If posts parameter is not set, the subscription will be created for an unlimited number of posts.", "old_posts": "Number of existing posts that will be parsed and for which orders will be created, can be used if this option is available for the service.", "delay": "Delay in minutes. Possible values: 0, 5, 10, 15, 20, 30, 40, 50, 60, 90, 120, 150, 180, 210, 240, 270, 300, 360, 420, 480, 540, 600", "expiry": "Expiry date. Format d/m/Y" } ``` -------------------------------- ### Add Order for Mentions with Hashtags Service Source: https://justanotherpanel.com/api Adds an order for a 'Mentions with Hashtags' service. This requires your API key, the service ID, the link to the target page, and a list of hashtags separated by newline characters. Usernames will be scraped from posts associated with these hashtags. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "hashtags": "Hashtags list separated by \r\n or \n" } ``` -------------------------------- ### Add Order for Web Traffic Service Source: https://justanotherpanel.com/api Adds an order for 'Web Traffic' service. This requires your API key, service ID, link, quantity, and traffic type. Depending on the traffic type, you may need to provide a google_keyword or referring_url. Device and country targeting are also available. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "quantity": "Needed quantity", "country": "Country code or full country name. Format: \"US\" or \"United States\"", "device": "Device name. 1 - Desktop, 2 - Mobile (Android), 3 - Mobile (IOS), 4 - Mixed (Mobile), 5 - Mixed (Mobile & Desktop)", "type_of_traffic": "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 for Custom List Mentions Service Source: https://justanotherpanel.com/api Adds an order for 'Custom List Mentions'. This requires your API key, service ID, link to the target post, and a list of usernames separated by newline characters. Each username in the list will be mentioned in the comments. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "usernames": "Usernames list separated by \r\n or \n" } ``` -------------------------------- ### Add Order for Custom Comments Service Source: https://justanotherpanel.com/api Adds an order for a 'Custom Comments' service. This requires your API key, the service ID, the link to the target page, and a list of custom comments separated by newline characters. Each comment will be posted as requested. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "comments": "Comments list separated by \r\n or \n" } ``` -------------------------------- ### Add Order for Followers Service Source: https://justanotherpanel.com/api Adds an order for the 'Followers' service. This requires your API key, the service ID, the link to the target page, and the desired quantity of followers. Optional parameters like 'runs' and 'interval' can be specified for recurring deliveries. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "quantity": "Needed quantity", "runs": "Runs to deliver", "interval": "Interval in minutes" } ``` -------------------------------- ### Add Order for Mentions User Followers Service Source: https://justanotherpanel.com/api Adds an order to mention users based on followers of a specific account. Requires your API key, service ID, link to the target post, and the username of the account whose followers should be mentioned. Quantity of mentions can also be specified. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "quantity": "Needed quantity", "username": "URL to scrape followers from" } ``` -------------------------------- ### Add Order for Groups Mentions Service Source: https://justanotherpanel.com/api Adds an order to mention users within specified groups. Requires your API key, service ID, link to the target post, and a list of groups separated by newline characters. This service allows targeted mentions within defined groups. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "groups": "Groups list separated by \r\n or \n" } ``` -------------------------------- ### Add Order for Mentions Hashtag Service Source: https://justanotherpanel.com/api Adds an order to mention users who posted with a specific hashtag. Requires your API key, service ID, link to the target post, quantity, and the hashtag to scrape usernames from. This service targets users who have used the specified hashtag. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "quantity": "Needed quantity", "hashtag": "Hashtag to scrape usernames from" } ``` -------------------------------- ### Add Order for Comment Likes Service Source: https://justanotherpanel.com/api Adds an order to like comments on a post. Requires your API key, service ID, link to the post, and the quantity of likes. This service will like a specified number of comments on the given post. ```json { "key": "Your API key", "action": "add", "service": "Service ID", "link": "Link to page", "quantity": "Needed quantity" } ``` -------------------------------- ### Cancel Order Source: https://justanotherpanel.com/api Cancels one or more orders. The API returns the status of the cancellation for each order. ```APIDOC ## POST /api/v2/cancel ### Description Cancels one or more orders. The API returns the status of the cancellation for each order. ### Method POST ### Endpoint /api/v2/cancel ### Parameters #### Request Body - **key** (string) - Required - Your API key. - **action** (string) - Required - Must be set to 'cancel'. - **orders** (string) - Required - A comma-separated list of order IDs (up to 100) to cancel. ### Request Example ```json { "key": "YOUR_API_KEY", "action": "cancel", "orders": "9,2" } ``` ### Response #### Success Response (200) - The response is an array of objects, each indicating the 'order' ID and the 'cancel' status. #### Response Example ```json [ { "order": 9, "cancel": { "error": "Incorrect order ID" } }, { "order": 2, "cancel": 1 } ] ``` ``` -------------------------------- ### Add Order for Poll Comment Replies Service Source: https://justanotherpanel.com/api Adds an order for 'Poll Comment Replies'. This requires your API key, service ID, link to the post, quantity, and the answer number for the poll. This service allows automated replies to poll questions. ```json { "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.