eTrend Gigs





API Overview

This is the API for eTrend Gigs, providing a range of services for social media management. Our platform connects you with over 15,000 real and active Nigerian freelancers, enabling you to automate your business operations effectively.

By integrating our API, you can streamline your processes, enhance your service offerings, and maximize your efficiency. Start automating today!

Authentication

To access the API, you must sign in and obtain your API key.

Get API Key

API Key

Your API key must be included in every request.

Method & Response Format

Only POST & JSON Format

API Endpoints

Base URL

https://etrendgigs.com/api/v2

OR

https://bbbyte.com.ng/etrendgigs/api/v2

Available Services

Use the following parameters:


{
    "key": "Your API key",
    "action": "services"
}
    

Example Response


[
    {
        "service": 1,
        "name": "Followers",
        "type": "Default",
        "category": "First Category",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true,
        "cancel": true
    }
]
    

Order Management

Add Order

To add an order, use the following parameters:


{
    "key": "Your API key",
    "action": "add",
    "service": "Service ID",
    "link": "Link to page",
    "quantity": "Needed quantity"
}
    

Example Response


{
    "order": 23501
}
    

Order Status

Check Order Status

To check the status of an order, use:


{
    "key": "Your API key",
    "action": "status",
    "order": "Order ID"
}
    

Example Response


{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "NGN"
}
    

User Balance

Check User Balance

To check your balance, use:


{
    "key": "Your API key",
    "action": "balance"
}
    

Example Response


{
    "balance": "100.84292",
    "currency": "NGN"
}
    
Get API Key