These are all the 1.0 APIs that have been deprecated since 23-Jan-2019. Please use the latest version of API 2.0.

/account/get_info

Get user account information

This API method is use for getting account information.
curl -H "MicroworkersApiKey:YOUR_API_KEY" -X GET "https://ttv.microworkers.com/api/account/get_info/format/json"
from pprint import pprint
from MW_API import MW_API
mw_api = MW_API('YOUR_API_KEY')
res = mw_api.do_request('GET','/account/get_info/format/json', {}, {})
pprint(res)
use MW_API;
use Data::Dumper qw(Dumper);
my $mw_api = MW_API->new('api_key' => 'YOUR_API_KEY');
my $res = $mw_api->do_request('GET', '/account/get_info/format/json');
print Dumper($res);
<?php

include "includes/RESTClient.php";
define("cAPI_KEY", "YOUR_API_KEY");
define("cAPI_URL", "https://ttv.microworkers.com/api");
$client = new RESTClient();
$client->setApiKey(cAPI_KEY);
$client->setUrl(cAPI_URL . "/account/get_info/format/json");
$client->setMethod("GET");
$client->execute();
$response = $client->getLastResponse();
$client->resetClient();
echo $response;
?>
using System;
using MWAPI;
using System.Collections.Specialized;

public class Test{
  public static void Main (string[] args){
    MW_API MW_API_Client = new MW_API ("YOUR_API_KEY");
NameValueCollection postData = new NameValueCollection();
    
    string body = MW_API_Client.getRequest("/account/get_info/format/json");
    Console.WriteLine (body);
  }
}

Definition


Result Format

{
  "status": "SUCCESS",
  "response": {
    "id": "de917335",
    "email": "[email protected]",
    "signup_ip": "150.129.107.12",
    "signup_datetime9": "2014-12-20 15:57:31",
    "fullname": "MS test account",
    "blocked_datetime9": "0000-00-00 00:00:00",
    "money_balance": "70.57000",
    "money_earned": "6.98000",
    "last_ip": "43.242.117.43",
    "last_refresh_datetime9": "2015-05-23 07:03:59",
    "nickname": "MS test",
    "lastproof_datetime9": "2015-05-23 07:04:29",
    "phone_number": "+9111111111111",
    "phone_number_verified": "1"
  }
}
{
  "status": "ERROR",
  "error": "UNKNOWN ERROR"
}