Back to Home

API Documentation

API Version: v2

FoxiGrow provides a standard SMM Panel API that allows you to integrate our services into your own applications. This documentation covers all available endpoints and their usage.

API Endpoint

https://foxigrow.com/api/v2

All requests should be sent to this endpoint via POST or GET method.

Authentication

All API requests require authentication using your API key. You can find your API key in your account settings. Include the key parameter in every request.

POST https://foxigrow.com/api/v2
Content-Type: application/json

{
  "key": "YOUR_API_KEY",
  "action": "services"
}

Response Format

All responses are returned in JSON format. Successful requests return the requested data, while errors return an error object with a description.

API Endpoints

Get Services

Returns a list of all available services with their details including pricing, minimum and maximum quantities.

Parameters

  • key - Your API key (required)
  • action - "services"
// Example Response
[
  {
    "service": 1,
    "name": "Instagram Followers",
    "type": "Default",
    "category": "Instagram",
    "rate": "0.90",
    "min": "100",
    "max": "10000",
    "refill": true,
    "cancel": true
  }
]

Get Balance

Returns your current account balance and currency.

Parameters

  • key - Your API key (required)
  • action - "balance"
// Example Response
{
  "balance": "100.84292",
  "currency": "USD"
}

Add Order

Create a new order for a service. The required parameters depend on the service type.

Default Type

  • key - Your API key (required)
  • action - "add"
  • service - Service ID (required)
  • link - Target URL (required)
  • quantity - Order quantity (required)

Package Type

  • key - Your API key (required)
  • action - "add"
  • service - Service ID (required)
  • link - Target URL (required)

Custom Comments Type

  • key - Your API key (required)
  • action - "add"
  • service - Service ID (required)
  • link - Target URL (required)
  • comments - Comments separated by newline (required)
// Example Response
{
  "order": 23501
}

Order Status

Get the status of one or more orders. You can query a single order or multiple orders at once.

Single Order

  • key - Your API key (required)
  • action - "status"
  • order - Order ID (required)

Multiple Orders (up to 100)

  • key - Your API key (required)
  • action - "status"
  • orders - Order IDs separated by comma (required)
// Example Response
{
  "charge": "0.27819",
  "start_count": "3572",
  "status": "Completed",
  "remains": "0",
  "currency": "USD"
}

Create Refill

Request a refill for an order. Only available for services that support refills.

Parameters

  • key - Your API key (required)
  • action - "refill"
  • order - Order ID (required)
// Example Response
{
  "refill": "1"
}

Refill Status

Check the status of a refill request.

Parameters

  • key - Your API key (required)
  • action - "refill_status"
  • refill - Refill ID (required)
// Example Response
{
  "status": "Completed"
}

Order Statuses

  • Pending - Order is waiting to be processed
  • Processing - Order is being prepared
  • In progress - Order is currently running
  • Completed - Order has been completed successfully
  • Partial - Order was partially completed (refund issued for remaining)
  • Canceled - Order was canceled

Error Handling

When an error occurs, the API returns a JSON object with an error field describing the issue.

// Error Response Example
{
  "error": "Invalid API key"
}

Rate Limits

To ensure service quality, the following rate limits apply:

  • 5 requests per second
  • 100 requests per minute
  • 1000 requests per hour

Support

If you have any questions about the API, please contact our support team:

Telegram: @FoxigrowBD