KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
dadata
★ 47
Open GitHub ↗
A PHP library for the DaData.ru REST API
Download README (.md)
Explore Similar Repositories
laravel-dadata
:
PHP SDK Laravel пакет работы с сервисом DaData.ru, для исправления синтаксических ошибок в информации контактных данных клиентов сайта и вывода подсказок поля форм.
dadata
:
Golang client for DaData.ru
vue-dadata
:
Vue component for hinting addresses using dadata.ru
dadata-client
:
Dadata Suggestions API client for Spring (Java)
react-dadata-box
:
React component for use DaData service API (suggestions)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
dadata
?
Download (.md)
Dadata API client ================= Non-official PHP library for the DaData.ru REST API [](https://packagist.org/packages/kstkn/dadata) [](https://packagist.org/packages/kstkn/dadata) [](https://packagist.org/packages/kstkn/dadata) [API documentation](https://dadata.ru/api/clean/) ## Installation The suggested installation method is via [composer](https://getcomposer.org/): ```sh composer require kstkn/dadata ``` ## Usage ``` php $client = new Dadata\Client(new \GuzzleHttp\Client(), [ 'token' => '...', 'secret' => '...', ]); ``` ### Clean ``` php $response = $client->cleanAddress('мск сухонска 11/-89'); $response = $client->cleanPhone('тел 7165219 доб139'); $response = $client->cleanPassport('4509 235857'); $response = $client->cleanName('Срегей владимерович иванов'); $response = $client->cleanEmail('serega@yandex/ru'); $response = $client->cleanDate('24/3/12'); $response = $client->cleanVehicle('форд фокус') ```