Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
patchoulish committed Nov 8, 2024
1 parent 411be9d commit 1b978ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ The **Enrichment API** allows you to access unique web content from Kagi’s spe
#### Web Enrichment
Retrieve supplemental results focused on high-quality "small web" content.
```csharp
var webEnrichmentResults = await kagi.SearchWebEnrichmentsAsync("coffee blog");
var webEnrichmentResults = await kagi.GetWebEnrichmentsAsync("coffee blog");

foreach (var item in webEnrichmentResults.Data)
{
Expand All @@ -140,7 +140,7 @@ foreach (var item in webEnrichmentResults.Data)
#### News Enrichment
Retrieve non-mainstream, high-quality news content relevant to your query.
```csharp
var newsEnrichmentResults = await kagi.SearchNewsEnrichmentsAsync("local news");
var newsEnrichmentResults = await kagi.GetNewsEnrichmentsAsync("local news");

foreach (var item in newsEnrichmentResults.Data)
{
Expand Down

0 comments on commit 1b978ac

Please sign in to comment.