{"id":51867291,"url":"https://github.com/apify/apify-client-dotnet","last_synced_at":"2026-07-24T18:00:59.191Z","repository":{"id":370888178,"uuid":"1287961478","full_name":"apify/apify-client-dotnet","owner":"apify","description":"Apify API client for .NET—Programmatically run Actors, manage and stream data from storages (datasets, key-value stores, request queues), schedule and monitor runs, and access the full Apify platform API. Sync and async interfaces with automatic retries and pagination. ","archived":false,"fork":false,"pushed_at":"2026-07-11T17:32:24.000Z","size":177,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-07-11T19:09:34.288Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.nuget.org/packages/Apify.Client","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apify.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-07-03T06:40:31.000Z","updated_at":"2026-07-10T10:58:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/apify/apify-client-dotnet","commit_stats":null,"previous_names":["apify/apify-client-dotnet"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/apify/apify-client-dotnet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Fapify-client-dotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Fapify-client-dotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Fapify-client-dotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Fapify-client-dotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apify","download_url":"https://codeload.github.com/apify/apify-client-dotnet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Fapify-client-dotnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35850518,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-24T02:00:07.870Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-07-24T18:00:58.562Z","updated_at":"2026-07-24T18:00:59.178Z","avatar_url":"https://github.com/apify.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apify API client for .NET\n\n\u003e **Official, but experimental — AI-generated and AI-maintained.** This is an official Apify client,\n\u003e but it is experimental: it is generated and maintained by AI. Review the code before relying on it in\n\u003e production and report issues on the repository.\n\nA resource-oriented .NET client for the [Apify API](https://docs.apify.com/api/v2), mirroring the\nofficial [JavaScript](https://github.com/apify/apify-client-js) reference client: start from an\n`ApifyClient`, then drill down into resources (Actors, runs, datasets, key-value stores, request\nqueues, tasks, schedules, webhooks, the store, users and logs).\n\nAll calls are asynchronous (`Task`-returning, `CancellationToken`-aware).\n\n## Requirements\n\n- .NET 8.0 or newer.\n\n## Installation\n\n```bash\ndotnet add package Apify.Client\n```\n\n## Quick start\n\n`ImplicitUsings` is disabled in this repository, so every `using` (even `System`) is listed explicitly.\n\n```csharp\nusing System;\nusing Apify.Client;\n\nvar client = new ApifyClient(\"my-api-token\");\n\n// Start an Actor and wait for it to finish (null waits indefinitely; pass seconds to bound the wait).\nvar run = await client.Actor(\"apify/hello-world\").CallAsync(null, null, null);\n\n// Read items from the run's default dataset.\nvar items = await client.Dataset(run.DefaultDatasetId!).ListItemsAsync();\n// Count is the number of items in THIS page; Total is the dataset's full count across all pages.\nConsole.WriteLine($\"Items on this page: {items.Count} (of {items.Total} total)\");\n```\n\n`new ApifyClient(\"my-api-token\")` takes the token as an explicit argument — it does **not** read\n`APIFY_TOKEN` automatically. Get your token from the\n[Apify Console → Settings → API \u0026 Integrations](https://console.apify.com/settings/integrations).\n\n## Documentation\n\nFull documentation lives in [`docs/`](docs/README.md), organized by resource, with runnable\n[examples](docs/examples.md).\n\n## Versioning\n\n- `Apify.Client.ApifyClientVersion.ClientVersion` — the semantic version of this library.\n- `Apify.Client.ApifyClientVersion.ApiSpecVersion` — the Apify OpenAPI spec version this client was\n  built against.\n\n## License\n\n[Apache-2.0](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapify%2Fapify-client-dotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapify%2Fapify-client-dotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapify%2Fapify-client-dotnet/lists"}