# namefyi
[](https://crates.io/crates/namefyi)
[](https://opensource.org/licenses/MIT)
Rust client for the [NameFYI](https://namefyi.com) REST API. Korean romanization. Uses `reqwest` for HTTP.
> **Explore at [namefyi.com](https://namefyi.com)** — interactive tools and comprehensive reference.
## Install
```toml
[dependencies]
namefyi = "0.1"
```
## Quick Start
```rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = namefyi::Client::new();
let result = client.search("query")?;
println!("{:?}", result);
Ok(())
}
```
## Also Available
| **Python** | `pip install namefyi` | [PyPI](https://pypi.org/project/namefyi/) |
| **npm** | `npm install namefyi` | [npm](https://www.npmjs.com/package/namefyi) |
| **Go** | `go get github.com/fyipedia/namefyi-go` | [pkg.go.dev](https://pkg.go.dev/github.com/fyipedia/namefyi-go) |
| **Rust** | `cargo add namefyi` | [crates.io](https://crates.io/crates/namefyi) |
| **Ruby** | `gem install namefyi` | [rubygems](https://rubygems.org/gems/namefyi) |
## Links
- **Site**: [namefyi.com](https://namefyi.com)
- **API**: [namefyi.com/api/v1/](https://namefyi.com/api/v1/)
- **OpenAPI**: [namefyi.com/api/v1/schema/](https://namefyi.com/api/v1/schema/)
Part of the [FYIPedia](https://fyipedia.com) open-source developer tools ecosystem.
## License
MIT