BuzzGrowth

API

One endpoint, one action parameter, JSON back. Everything below is a POST with form-encoded fields.

Endpoint
https://buzzgrowth.site/api/v1
Method
POST
Response
JSON
Auth
Your API key, sent as the key field on every request

Your key lives in your account. Sign in to get one. Errors come back as {"error": "..."} with HTTP 200, so check the body rather than the status code.

Service list services

Every active service with its rate, and the minimum and maximum you can order.

Parameters

  • key Your API key
  • action services

Success

[
  {
    "service": 1,
    "name": "Instagram Followers",
    "rate": "2.50",
    "min": 100,
    "max": 100000,
    "category": "Instagram"
  }
]

Errors

  • {"error": "The action field is required"}
  • {"error": "The api key field is required"}
  • {"error": "Invalid api key"}
  • {"error": "Invalid action"}

Place an order add

Charges your account balance and queues the order. Top the balance up first — an order is rejected, not held, if funds are short.

Parameters

  • key Your API key
  • action add
  • service Service ID from the service list
  • link Profile URL or post URL, depending on the service
  • quantity How many to deliver

Success

{
  "order": 4821
}

Errors

  • {"error": "The action field is required"}
  • {"error": "The api key field is required"}
  • {"error": "Invalid api key"}
  • {"error": "Invalid Service Id"}
  • {"error": "The link field is required"}
  • {"error": "The quantity field is required"}

Order status status

Where an order has got to, and how much of it is still outstanding.

Parameters

  • key Your API key
  • action status
  • order Order ID returned by add

Success

{
  "status": "processing",
  "start_counter": 1204,
  "remain": 350,
  "currency": "USD"
}

Errors

  • {"error": "The order field is required"}
  • {"error": "Invalid Order Id"}

Account balance balance

What is left on the account the API key belongs to.

Parameters

  • key Your API key
  • action balance

Success

{
  "balance": "42.10",
  "currency": "USD"
}

Errors

  • {"error": "Invalid api key"}

Something not working?

Send us the request you made and the response you got back — that's usually enough to spot it straight away.

Contact us