PHP code example of a.treschilov / tinkoff-invest-api-sdk
1. Go to this page and download the library: Download a.treschilov/tinkoff-invest-api-sdk library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
a.treschilov / tinkoff-invest-api-sdk example snippets
declare(strict_types=1);
use ATreschilov\TinkoffInvestApiSdk\Exceptions\TIException as TIException;
use ATreschilov\TinkoffInvestApiSdk\TIClient;
ons = [
'isRateLimitRetry' => false
];
$tiClient = new TIClient($token, $options);
try {
$tiAccounts = $tiClient->getUser()->getAccounts();
$accounts = [];
foreach ($tiAccounts as $account) {
$accounts[] = [
'id' => $account->getId(),
'name' => $account->getName(),
'type' => $account->getType(),
'status' => $account->getStatus(),
'openedDate' => $account->getOpenedDate()->getSeconds(),
'closedDate' => $account->getClosedDate()->getSeconds()
];
}
echo '<pre>' . print_r($accounts, true) . '</pre>';
} catch (TIException $e) {
echo $e->getCode() . '. ' . $e->getMessage();
}
declare(strict_types=1);
use ATreschilov\TinkoffInvestApiSdk\TIClient;
use Tinkoff\Invest\V1\Account;
use Tinkoff\Invest\V1\GetAccountsRequest;
use Tinkoff\Invest\V1\GetAccountsResponse;
use Tinkoff\Invest\V1\UsersServiceClient;
->getHostname(), $tiClient->getApiConfig());
$request = new GetAccountsRequest();
/** @var GetAccountsResponse $response */
list($response, $status) = $userServiceClient->GetAccounts($request)->wait();
if ($status->code !== 0) {
echo '<pre>' . print_r($status, true) . '</pre>';
return;
}
$accounts = [];
/** @var Account $account */
foreach ($response->getAccounts() as $account) {
$accounts[] = [
'id' => $account->getId(),
'name' => $account->getName(),
'type' => $account->getType(),
'status' => $account->getStatus(),
'openedDate' => $account->getOpenedDate()->getSeconds(),
'closedDate' => $account->getClosedDate()->getSeconds()
];
}
echo '<pre>' . print_r($accounts, true) . '</pre>';