Skip to main content

Crate ventureinkorea

Crate ventureinkorea 

Source
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§

AutocompleteItem
An autocomplete suggestion.
AutocompleteResponse
Response from the autocomplete endpoint.
BlogPost
A blog post about the Korean startup ecosystem.
Company
A venture-certified company (벤처인증기업).
Faq
A frequently asked question.
GlossaryTerm
A Korean venture/startup glossary term.
PaginatedResponse
Paginated API response wrapper.
PlatformStats
Platform-wide statistics.
PostCategory
A blog post category.
SearchResponse
Response from the search endpoint.
SearchResultItem
A unified search result item.
VentureInKorea
Async client for the VentureInKorea REST API.
VentureInKoreaBuilder
Builder for configuring a VentureInKorea client.

Enums§

VentureError
Errors returned by the VentureInKorea API client.