{"id":22065410,"url":"https://github.com/tryagi/tripo","last_synced_at":"2026-05-05T12:34:04.006Z","repository":{"id":261501448,"uuid":"861164884","full_name":"tryAGI/Tripo","owner":"tryAGI","description":"C# SDK for the Tripo API -- AI 3D model generation","archived":false,"fork":false,"pushed_at":"2026-04-29T03:24:46.000Z","size":527,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-29T05:17:35.876Z","etag":null,"topics":["3d-generation","ai","autosdk","csharp","dotnet","openapi","sdk","tripo"],"latest_commit_sha":null,"homepage":"https://tryagi.github.io/Tripo/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tryAGI.png","metadata":{"files":{"readme":"README.md","changelog":null,"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},"funding":{"github":"HavenDV","patreon":"havendv","ko_fi":"havendv","custom":["https://www.paypal.me/havendv","https://www.buymeacoffee.com/havendv","https://donate.stripe.com/00gfZ19zkeKLh1eaEE","https://www.upwork.com/freelancers/~017b1ad6f6af9cc189"]}},"created_at":"2024-09-22T07:08:06.000Z","updated_at":"2026-04-29T03:24:48.000Z","dependencies_parsed_at":"2024-12-18T04:22:30.569Z","dependency_job_id":"5a94ecae-57ce-48ec-8a55-c36cd7065660","html_url":"https://github.com/tryAGI/Tripo","commit_stats":null,"previous_names":["tryagi/tripo"],"tags_count":2,"template":false,"template_full_name":"tryAGI/SdkTemplate","purl":"pkg:github/tryAGI/Tripo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FTripo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FTripo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FTripo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FTripo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tryAGI","download_url":"https://codeload.github.com/tryAGI/Tripo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FTripo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32649598,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["3d-generation","ai","autosdk","csharp","dotnet","openapi","sdk","tripo"],"created_at":"2024-11-30T19:17:26.699Z","updated_at":"2026-05-05T12:34:03.998Z","avatar_url":"https://github.com/tryAGI.png","language":"C#","funding_links":["https://github.com/sponsors/HavenDV","https://patreon.com/havendv","https://ko-fi.com/havendv","https://www.paypal.me/havendv","https://www.buymeacoffee.com/havendv","https://donate.stripe.com/00gfZ19zkeKLh1eaEE","https://www.upwork.com/freelancers/~017b1ad6f6af9cc189"],"categories":[],"sub_categories":[],"readme":"# Tripo\n\n[![Nuget package](https://img.shields.io/nuget/vpre/Tripo)](https://www.nuget.org/packages/Tripo/)\n[![dotnet](https://github.com/tryAGI/Tripo/actions/workflows/dotnet.yml/badge.svg?branch=main)](https://github.com/tryAGI/Tripo/actions/workflows/dotnet.yml)\n[![License: MIT](https://img.shields.io/github/license/tryAGI/Tripo)](https://github.com/tryAGI/Tripo/blob/main/LICENSE.txt)\n[![Discord](https://img.shields.io/discord/1115206893015662663?label=Discord\u0026logo=discord\u0026logoColor=white\u0026color=d82679)](https://discord.gg/Ca2xhfBf3v)\n\n## Features 🔥\n- Fully generated C# SDK based on [official Tripo OpenAPI specification](https://platform.tripo3d.ai/docs/schema) using [AutoSDK](https://github.com/HavenDV/AutoSDK)\n- Same day update to support new features\n- Updated and supported automatically if there are no breaking changes\n- All modern .NET features - nullability, trimming, NativeAOT, etc.\n- Support .Net Framework/.Net Standard 2.0\n\n### Usage\n```csharp\nusing Tripo;\n\nusing var api = new TripoClient(apiKey);\n\nSuccessTask response = await api.CreateTaskAsync(new CreateTaskRequestVariant1\n{\n    Type = CreateTaskRequestVariant1Type.TextToModel,\n    Prompt = \"Generate some girl face\",\n});\n\nConsole.WriteLine($\"Code: {response.Code}\");\nConsole.WriteLine($\"TaskId: {response.Data.TaskId}\");\n\nawait Task.Delay(TimeSpan.FromMinutes(1));\n\nGetTaskResponse taskResponse = await api.GetTaskAsync(response.Data.TaskId);\n\nConsole.WriteLine($\"Code: {taskResponse.Code}\");\nConsole.WriteLine($\"Status: {taskResponse.Data.Status}\");\nConsole.WriteLine($\"RenderedImage: {taskResponse.Data.Output.RenderedImage}\");;\nConsole.WriteLine($\"Model: {taskResponse.Data.Output.Model}\");\nConsole.WriteLine($\"PbrModel: {taskResponse.Data.Output.PbrModel}\");\nConsole.WriteLine($\"BaseModel: {taskResponse.Data.Output.BaseModel}\");\n```\n![Result](assets/rendered_image.webp)\n\n## Support\n\nPriority place for bugs: https://github.com/tryAGI/Tripo/issues  \nPriority place for ideas and general questions: https://github.com/tryAGI/Tripo/discussions  \nDiscord: https://discord.gg/Ca2xhfBf3v  \n\n## Acknowledgments\n\n![JetBrains logo](https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.png)\n\nThis project is supported by JetBrains through the [Open Source Support Program](https://jb.gg/OpenSourceSupport).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftryagi%2Ftripo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftryagi%2Ftripo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftryagi%2Ftripo/lists"}