{"id":37017351,"url":"https://github.com/kuliginstepan/dadata-client","last_synced_at":"2026-01-14T02:00:18.086Z","repository":{"id":46678519,"uuid":"183963667","full_name":"KuliginStepan/dadata-client","owner":"KuliginStepan","description":"Dadata Suggestions API client for Spring (Java)","archived":false,"fork":false,"pushed_at":"2023-03-04T16:36:00.000Z","size":290,"stargazers_count":20,"open_issues_count":3,"forks_count":19,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-24T14:01:56.590Z","etag":null,"topics":["dadata-api","dadata-client","java","spring"],"latest_commit_sha":null,"homepage":"","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/KuliginStepan.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-04-28T22:06:04.000Z","updated_at":"2025-01-12T16:40:19.000Z","dependencies_parsed_at":"2025-04-24T14:01:16.416Z","dependency_job_id":"980e43d1-f352-4520-bf34-ab67bfd78ae9","html_url":"https://github.com/KuliginStepan/dadata-client","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/KuliginStepan/dadata-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KuliginStepan%2Fdadata-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KuliginStepan%2Fdadata-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KuliginStepan%2Fdadata-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KuliginStepan%2Fdadata-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KuliginStepan","download_url":"https://codeload.github.com/KuliginStepan/dadata-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KuliginStepan%2Fdadata-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"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":["dadata-api","dadata-client","java","spring"],"created_at":"2026-01-14T02:00:16.320Z","updated_at":"2026-01-14T02:00:18.064Z","avatar_url":"https://github.com/KuliginStepan.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Maven Central](https://img.shields.io/maven-central/v/com.github.kuliginstepan/dadata-client)\n![](https://github.com/kuliginstepan/dadata-client/workflows/Java%20CI%20with%20Gradle/badge.svg)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/11dd4516337e4a9da32b427262e96fe7)](https://www.codacy.com/app/KuliginStepan/dadata-client?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=KuliginStepan/dadata-client\u0026amp;utm_campaign=Badge_Grade)\n[![codecov](https://codecov.io/gh/KuliginStepan/dadata-client/branch/master/graph/badge.svg)](https://codecov.io/gh/KuliginStepan/dadata-client)\n\n# dadata-client\n\nDadata Suggestions API client for Spring (Java)\n\n## Overview\n\nDadata API client based on non-blocking HTTP client of Spring WebClient. Supports all methods of Suggestion API\n\n## [Release notes](ReleaseNotes.md)\n\n## Add a dependency\n\nGradle:\n\t\n\tdependencies {\n\t        implementation 'com.github.kuliginstepan:dadata-client:Tag'\n\t}\n\t\nMaven:\n\t\n\t\u003cdependency\u003e\n\t    \u003cgroupId\u003ecom.github.kuliginstepan\u003c/groupId\u003e\n\t    \u003cartifactId\u003edadata-client\u003c/artifactId\u003e\n\t    \u003cversion\u003eTag\u003c/version\u003e\n\t\u003c/dependency\u003e\n\n## Configuration\n\nDadata client provides `DadataClientAutoConfiguration` which configures `DadataClient` bean for you.\n\n### Primary settings\n\nIt's required to add property `dadata.client.token` with your Dadata API Token.\n\nYou may add property `dadata.client.timeout` to configure dadata client request timeout, defaults to 5 seconds.\n\nVia `dadata.client.baseUrl` you can change Dadata base url, defaults to https://suggestions.dadata.ru/suggestions/api/4_1/rs\n\n`dadata.client.maxInMemorySize` defines max buffer size for response, defaults to 512K. You can change it if you have memory issues.\n\n### Proxy support and SSL verification\n\n`dadata.client.proxy.type` - valid values are: HTTP, SOCKS4, SOCKS5, defaults to HTTP\n\n`dadata.client.proxy.server` - proxy hostname or ip address\n\n`dadata.client.proxy.port` - proxy port, positive number\n\nIf you have configured above options you can use authentication via username/password pair just setting system properties for them.\n\n-   for HTTP proxy you should use `http.proxyUser` and `http.proxyPassword` respectively.\n-   for SOCKS proxy you should use `java.net.socks.username` and `java.net.socks.password` respectively.\n\nThere is no authorization at proxy if no username defined in system environment.\n\n`dadata.client.verifySsl` - enable/disable server SSL-certificate verification at client-side, defaults to true\n\n## Usage\n\nAutowire `DadataClient` in your beans and call api methods, for example:\n\n```\n@Service\npublic class SomeService {\n    \n    @Autowired\n    private DadataClient client;\n    \n    public Flux\u003cSuggestion\u003cAddress\u003e\u003e getSuggestionsForAddress(String query) {\n        return client.suggestAddress(AddressRequestBuilder.create(query).build());\n    }\n}\n```\n\nRequest builders allow filter and rank suggestions. More examples are available in the `test` module \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuliginstepan%2Fdadata-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuliginstepan%2Fdadata-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuliginstepan%2Fdadata-client/lists"}