{"id":39743199,"url":"https://github.com/pluggyai/pluggy-java","last_synced_at":"2026-01-18T11:17:31.034Z","repository":{"id":41441946,"uuid":"283552672","full_name":"pluggyai/pluggy-java","owner":"pluggyai","description":"Official Java SDK for Pluggy API","archived":false,"fork":false,"pushed_at":"2025-11-06T21:57:10.000Z","size":268,"stargazers_count":7,"open_issues_count":2,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-06T23:29:05.570Z","etag":null,"topics":["banking","open","open-banking","pluggy","pluggy-api","pluggy-sdk"],"latest_commit_sha":null,"homepage":"https://docs.pluggy.ai","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pluggyai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-07-29T16:46:50.000Z","updated_at":"2025-11-06T21:57:14.000Z","dependencies_parsed_at":"2024-05-21T15:43:32.411Z","dependency_job_id":"12f17a43-209f-4669-94c7-3f560e78e115","html_url":"https://github.com/pluggyai/pluggy-java","commit_stats":null,"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"purl":"pkg:github/pluggyai/pluggy-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluggyai%2Fpluggy-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluggyai%2Fpluggy-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluggyai%2Fpluggy-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluggyai%2Fpluggy-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pluggyai","download_url":"https://codeload.github.com/pluggyai/pluggy-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluggyai%2Fpluggy-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28535161,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T10:13:46.436Z","status":"ssl_error","status_checked_at":"2026-01-18T10:13:11.045Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["banking","open","open-banking","pluggy","pluggy-api","pluggy-sdk"],"created_at":"2026-01-18T11:17:30.473Z","updated_at":"2026-01-18T11:17:31.029Z","avatar_url":"https://github.com/pluggyai.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pluggy Java\n\n[![Actions Status](https://github.com/pluggyai/pluggy-java/workflows/Build%20%26%20Test/badge.svg)](https://github.com/pluggyai/pluggy-java/actions?query=workflow%3A\"Build+%26+Test\")\n\nJava Bindings for the Pluggy API (https://docs.pluggy.ai/).\n\nFor available SDK API methods, check [PluggyApiService](./src/main/java/ai/pluggy/client/PluggyApiService.java) interface methods.\n\nThis implementation uses [Retrofit](https://github.com/square/retrofit) and [OkHttp](https://github.com/square/okhttp) libraries. For advanced use cases, please check their respectives APIs.\n\nAlso, for examples of use, please check the [integration tests](./src/test/java/ai/pluggy/client/integration) - practically all of the available endpoints have at least one test case.\n\n### Install\n\nUsing Maven, add dependency to your pom.xml:\n\nCurrently, the package is available in Github Packages, so make sure to have the GH Packages server config with your Personal GH Access Token in your `.m2/settings.xml` file. Navigate to [this guide](https://docs.github.com/en/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages#authenticating-to-github-packages) for more details.\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eai.pluggy\u003c/groupId\u003e\n  \u003cartifactId\u003epluggy-java\u003c/artifactId\u003e\n  \u003cversion\u003e1.7.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Basic Usage\n\n```java\n\n// Use builder to create a client instance\nPluggyClient pluggyClient = PluggyClient.builder()\n  .clientIdAndSecret(\"your_client_id\", \"your_secret\")\n  .build();\n\n// Authenticate your client (optional - by default, auth token is requested \u0026 refreshed as needed by ApiKeyAuthInterceptor)\npluggyClient.authenticate()\n\n// Synchronously perform a request\nResponse\u003cConnectorsResponse\u003e connectorsResponse = pluggyClient.service().getConnectors().execute();\n\n// or, a request with params:\nResponse\u003cConnectorsResponse\u003e connectorsResponseFiltered = pluggyClient.service()\n  .getConnectors(new ConnectorSearchRequest(\"Pluggy\", Arrays.asList(\"AR\")))\n  .execute();\n\n// Read response data (or error):\nif(connectorsResponse.isSuccessful()) {\n  // successful -\u003e get body\n  ConnectorsResponse connectorsResponseBody = connectorsResponse.body();\n} else {\n  // unsuccessful -\u003e parse error data\n  ErrorResponse errorResponse = pluggyClient.parseError(connectorsResponse)\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpluggyai%2Fpluggy-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpluggyai%2Fpluggy-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpluggyai%2Fpluggy-java/lists"}