{"id":25305707,"url":"https://github.com/philterd/philter-sdk-java","last_synced_at":"2025-10-28T10:31:43.737Z","repository":{"id":45343248,"uuid":"176597810","full_name":"philterd/philter-sdk-java","owner":"philterd","description":"Philter Java SDK","archived":false,"fork":false,"pushed_at":"2025-07-13T16:59:14.000Z","size":156,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-23T02:53:42.871Z","etag":null,"topics":["java","personally-identifiable-information","phi","philter","pii","protected-health-information","sensitive-data","sensitive-data-security"],"latest_commit_sha":null,"homepage":"https://www.philterd.ai","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/philterd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-03-19T21:01:44.000Z","updated_at":"2025-07-13T16:59:16.000Z","dependencies_parsed_at":"2023-01-20T00:15:16.032Z","dependency_job_id":"0cd3887a-f66a-4a5b-8e57-5fab090ebb8b","html_url":"https://github.com/philterd/philter-sdk-java","commit_stats":null,"previous_names":["mtnfog/philter-sdk-java"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/philterd/philter-sdk-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philterd%2Fphilter-sdk-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philterd%2Fphilter-sdk-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philterd%2Fphilter-sdk-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philterd%2Fphilter-sdk-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/philterd","download_url":"https://codeload.github.com/philterd/philter-sdk-java/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philterd%2Fphilter-sdk-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281424748,"owners_count":26499021,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-28T02:00:06.022Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["java","personally-identifiable-information","phi","philter","pii","protected-health-information","sensitive-data","sensitive-data-security"],"created_at":"2025-02-13T09:53:44.956Z","updated_at":"2025-10-28T10:31:43.728Z","avatar_url":"https://github.com/philterd.png","language":"Java","readme":"# Philter SDK for Java\n\nThe **Philter SDK for Java** is an API client for [Philter](https://www.philterd.ai). Philter identifies and manipulates\nsensitive information such as Protected Health Information (PHI) and personally identifiable information (PII) in\nnatural language text. Philter is built upon the open source PII/PHI detection\nengine [Phileas](https://github.com/philterd/phileas).\n\nRefer to the [Philter API](https://docs.philterd.ai/philter/latest/api-1-readme.html) documentation for details on the\nmethods available.\n\n## Snapshots and Releases\n\nAs of version 1.6.0-SNAPSHOT, snapshots and releases are available from Maven Central. Previous versions were available\nfrom our [Maven repositories](https://artifacts.philterd.ai/) so add the following to your Maven configuration:\n\n```\n\u003crepository\u003e\n    \u003cid\u003ephilterd-repository-releases\u003c/id\u003e\n    \u003curl\u003ehttps://artifacts.philterd.ai/releases\u003c/url\u003e\n    \u003csnapshots\u003e\n        \u003cenabled\u003efalse\u003c/enabled\u003e\n    \u003c/snapshots\u003e\n\u003c/repository\u003e\n\u003crepository\u003e\n    \u003cid\u003ephilterd-repository-snapshots\u003c/id\u003e\n    \u003curl\u003ehttps://artifacts.philterd.ai/snapshots\u003c/url\u003e\n    \u003csnapshots\u003e\n        \u003cenabled\u003etrue\u003c/enabled\u003e\n    \u003c/snapshots\u003e\n\u003c/repository\u003e\n```\n\n## Example Usage\n\nWith an available running instance of Philter, to filter text:\n\n```\nPhilterClient client = new PhilterClient.PhilterClientBuilder().withEndpoint(\"https://127.0.0.1:8080\").build();\nFilterResponse filterResponse = client.filter(text);\n```\n\nTo filter text with explanation:\n\n```\nPhilterClient client = new PhilterClient.PhilterClientBuilder().withEndpoint(\"https://127.0.0.1:8080\").build();\nExplainResponse explainResponse = client.explain(text);\n```\n\n## Release History\n\n* 1.6.0 (not yet released):\n   * Updated dependencies. \n   * Now available from Maven central.\n* 1.5.0:\n   * Updated dependencies.\n* 1.4.0:\n    * Modified /api/status response.\n    * Renamed profiles to policies.\n* 1.3.1:\n    * Changed from com.mtnfog to ai.philterd.\n* 1.3.0:\n    * Added support for SSL authentication.\n    * Added support for filtering PDF documents.\n    * Removed token-based API authentication.\n    * Removed models client.\n* 1.2.0:\n    * Added option for API authentication support.\n    * Added `salt` to `Span` for when the `HASH_SHA256_REPLACE` filter strategy is applied by Philter.\n    * Changed artifact name to `philter-sdk-java`\n    * Added alerts retrieval/deletion to client.\n    * Added models client.\n* 1.1.0:\n    * Various changes/fixes.\n    * Split SDKs into separate projects.\n* 1.0.0:\n    * Initial release.\n\n## License\n\nThis project is licensed under the Apache License, version 2.0.\n\nCopyright 2024 Philterd, LLC.\nPhilter is a registered trademark of Philterd, LLC.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilterd%2Fphilter-sdk-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphilterd%2Fphilter-sdk-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilterd%2Fphilter-sdk-java/lists"}