pushpak1300 / laravel-phpkiteconnect
Laravel wrapper for zerodha/phpkiteconnect
0.0.1
2021-04-17 15:27 UTC
Requires
- php: ^7.4|^8.0
- spatie/laravel-package-tools: ^1.4.3
- zerodha/phpkiteconnect: ^4.0
Requires (Dev)
- brianium/paratest: ^6.2
- nunomaduro/collision: ^5.3
- orchestra/testbench: ^6.15
- phpunit/phpunit: ^9.3
- vimeo/psalm: ^4.4
This package is auto-updated.
Last update: 2025-03-18 00:32:57 UTC
README
The UnOfficial Laravel client for communicating with the Kite Connect API.
Kite Connect is a set of REST-like APIs that expose many capabilities required to build a complete investment and trading platform. Execute orders in real time, manage user portfolio and more, with the simple HTTP API collection.
Documentation
Installing
Requirements
You can install the package via composer:
composer require pushpak/laravel-phpkiteconnect
Usage
<?php // Assuming you have obtained the `request_token` // after the auth flow redirect by redirecting the // user to KiteConnect::login_url() try { $user = KiteConnect::generateSession("request_token_obtained", "your_api_secret"); echo "Authentication successful. \n"; print_r($user); KiteConnect::setAccessToken($user->access_token); } catch(Exception $e) { echo "Authentication failed: ".$e->getMessage(); throw $e; } echo $user->user_id." has logged in"; // Get the list of positions. echo "Positions: \n"; dump(KiteConnect::getPositions()); // Place order. $order = KiteConnect::placeOrder("regular", [ "tradingsymbol" => "INFY", "exchange" => "NSE", "quantity" => 1, "transaction_type" => "BUY", "order_type" => "MARKET", "product" => "NRML" ]); echo "Order id is ".$order->order_id; ?>
Examples
This package provide laravel facade to make work with KiteConnect Refer to the PHP client documentation for the complete list of supported methods.