https://github.com/pluggyai/pluggy-net
Official .NET SDK for Pluggy API
https://github.com/pluggyai/pluggy-net
banking open open-banking pluggy pluggy-api pluggy-sdk
Last synced: 5 months ago
JSON representation
Official .NET SDK for Pluggy API
- Host: GitHub
- URL: https://github.com/pluggyai/pluggy-net
- Owner: pluggyai
- Created: 2019-08-05T17:36:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-08-26T10:00:37.000Z (10 months ago)
- Last Synced: 2025-08-26T12:42:10.210Z (10 months ago)
- Topics: banking, open, open-banking, pluggy, pluggy-api, pluggy-sdk
- Language: C#
- Homepage: https://docs.pluggy.ai
- Size: 174 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# .NET client library for the Pluggy API
**Welcome to Pluggy Dotnet SDK**. This repository contains Pluggy's Dotnet SDK and samples to execute all the endpoints available for aggregation.
Also there is a small Client created to review the flow to get the execution result of a specific robot.
### Installation
```powershell
Install-Package Pluggy.SDK
```
### Usage
Request a API KEY token that will be used for all API calls you wish to make.
Create an instance of the `PluggyAPI` class with the token and the API URL:
```csharp
var client = new PluggyAPI("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET");
```
All api calls are under the same client, and respect the same behaviour.
```csharp
var connectors = await client.FetchConnectors();
```
#### Security at transit
At Pluggy we enforce the use of TLSv1.2 or higher. If you are using .NET < 4.7.2, this won't be the default communication for http clients, and you will need to set it.
```csharp
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
```
## Building
This project can be built on Windows, Linux or macOS. Ensure you have the [.NET Core SDK](https://www.microsoft.com/net/download) installed.
## Documentation
For most up-to-date and accurate documentation, please see our [API Reference](https://docs.pluggy.ai) page.