Expand description
§ventureinkorea
Async Rust client for the VentureInKorea REST API.
Access Korean venture-certified companies (벤처인증기업), startup ecosystem glossary terms, blog posts, and unified search across the platform. Available in 4 languages (Korean, English, Japanese, Chinese).
§Quick Start
use ventureinkorea::VentureInKorea;
#[tokio::main]
async fn main() -> Result<(), ventureinkorea::VentureError> {
let client = VentureInKorea::new();
// Search Korean venture content
let results = client.search("AI startup").await?;
println!("Found {} results", results.total);
// List glossary terms
let terms = client.list_terms(None).await?;
for term in &terms.results {
println!("{}: {}", term.slug, term.name);
}
Ok(())
}Structs§
- Autocomplete
Item - An autocomplete suggestion.
- Autocomplete
Response - Response from the autocomplete endpoint.
- Blog
Post - A blog post about the Korean startup ecosystem.
- Company
- A venture-certified company (벤처인증기업).
- Faq
- A frequently asked question.
- Glossary
Term - A Korean venture/startup glossary term.
- Paginated
Response - Paginated API response wrapper.
- Platform
Stats - Platform-wide statistics.
- Post
Category - A blog post category.
- Search
Response - Response from the search endpoint.
- Search
Result Item - A unified search result item.
- Venture
InKorea - Async client for the VentureInKorea REST API.
- Venture
InKorea Builder - Builder for configuring a
VentureInKoreaclient.
Enums§
- Venture
Error - Errors returned by the VentureInKorea API client.