# cablefyi
[](https://crates.io/crates/cablefyi)
[](https://opensource.org/licenses/MIT)
Rust client for the [CableFYI](https://cablefyi.com) REST API. Submarine cables. Uses `reqwest` for HTTP.
> **Explore at [cablefyi.com](https://cablefyi.com)** — interactive tools and comprehensive reference.
## Install
```toml
[dependencies]
cablefyi = "0.1"
```
## Quick Start
```rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = cablefyi::Client::new();
let result = client.search("query")?;
println!("{:?}", result);
Ok(())
}
```
## Also Available
| **Python** | `pip install cablefyi` | [PyPI](https://pypi.org/project/cablefyi/) |
| **npm** | `npm install cablefyi` | [npm](https://www.npmjs.com/package/cablefyi) |
| **Go** | `go get github.com/fyipedia/cablefyi-go` | [pkg.go.dev](https://pkg.go.dev/github.com/fyipedia/cablefyi-go) |
| **Rust** | `cargo add cablefyi` | [crates.io](https://crates.io/crates/cablefyi) |
| **Ruby** | `gem install cablefyi` | [rubygems](https://rubygems.org/gems/cablefyi) |
## Links
- **Site**: [cablefyi.com](https://cablefyi.com)
- **API**: [cablefyi.com/api/v1/](https://cablefyi.com/api/v1/)
- **OpenAPI**: [cablefyi.com/api/v1/schema/](https://cablefyi.com/api/v1/schema/)
- **Guides**: [cablefyi.com/guides/](https://cablefyi.com/guides/)
- **Tools**: [cablefyi.com/tools/](https://cablefyi.com/tools/)
- **Developers**: [cablefyi.com/developers/](https://cablefyi.com/developers/)
Part of the [FYIPedia](https://fyipedia.com) open-source developer tools ecosystem.
## Network FYI Family
Part of the [FYIPedia](https://fyipedia.com) open-source developer tools ecosystem.
| **CableFYI** | [cablefyi.com](https://cablefyi.com) | Submarine cables, connectors, standards |
| IPFYI | [ipfyi.com](https://ipfyi.com) | IP geolocation, ASN lookup, CIDR ranges |
| StatusCodeFYI | [statuscodefyi.com](https://statuscodefyi.com) | HTTP status codes, protocol references |
| TLDFYI | [tldfyi.com](https://tldfyi.com) | TLD registry, domain extensions, WHOIS |
## License
MIT