{"id":18307964,"url":"https://github.com/tobihatti/api-2-oop","last_synced_at":"2026-05-19T07:06:21.171Z","repository":{"id":40888113,"uuid":"233831615","full_name":"TobiHatti/API-2-OOP","owner":"TobiHatti","description":"✔🌍 Simple tool for converting API-Statements into objects for OOP-Languages","archived":false,"fork":false,"pushed_at":"2022-12-08T09:38:20.000Z","size":51145,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T05:25:02.623Z","etag":null,"topics":["api","csharp","development-tools","dotnet","rest-api","tool","uwp"],"latest_commit_sha":null,"homepage":"https://endev.at/p/API-2-OOP","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TobiHatti.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}},"created_at":"2020-01-14T12:00:26.000Z","updated_at":"2020-07-09T21:36:13.000Z","dependencies_parsed_at":"2023-01-25T05:45:53.196Z","dependency_job_id":null,"html_url":"https://github.com/TobiHatti/API-2-OOP","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiHatti%2FAPI-2-OOP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiHatti%2FAPI-2-OOP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiHatti%2FAPI-2-OOP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiHatti%2FAPI-2-OOP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TobiHatti","download_url":"https://codeload.github.com/TobiHatti/API-2-OOP/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248029563,"owners_count":21036014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["api","csharp","development-tools","dotnet","rest-api","tool","uwp"],"created_at":"2024-11-05T16:06:05.629Z","updated_at":"2025-10-21T06:38:24.643Z","avatar_url":"https://github.com/TobiHatti.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg align=\"right\" width=\"80\" height=\"80\" data-rmimg src=\"https://endev.at/content/projects/API-2-OOP/API2OOP_Logo_128.png\"\u003e\n\n# API-2-OOP\n\n[![GitHub](https://img.shields.io/github/license/TobiHatti/API-2-OOP)](https://opensource.org/licenses/GPL-3.0)\n[![GitHub Release Date](https://img.shields.io/github/release-date-pre/TobiHatti/API-2-OOP)](https://github.com/TobiHatti/API-2-OOP/releases)\n[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/TobiHatti/API-2-OOP?include_prereleases)](https://github.com/TobiHatti/API-2-OOP/releases)\n[![GitHub last commit](https://img.shields.io/github/last-commit/TobiHatti/API-2-OOP)](https://github.com/TobiHatti/API-2-OOP/commits/master)\n[![GitHub issues](https://img.shields.io/github/issues-raw/TobiHatti/API-2-OOP)](https://github.com/TobiHatti/API-2-OOP/issues)\n[![GitHub language count](https://img.shields.io/github/languages/count/TobiHatti/API-2-OOP)](https://github.com/TobiHatti/API-2-OOP)\n\n![image](https://endev.at/content/projects/API-2-OOP/API2OOP_Banner_300.png)\n\nThe API-2-OOP-Tool provides a simple way to convert lines from an API to programing-friendly-formated statements to speed up development of API-based programs.\nAvailable as Winforms-Program as well as UWP-App (Windows-App)\n\n![image](https://endev.at/content/projects/API-2-OOP/projectImages/API2OOP_Sample.png)\n\n```json\n{\n\t\"status\":\"success\",\n\t\"data\":[\n\t{\n\t\t\"id\":\"1\",\n\t\t\"employee_name\":\"Tiger Nixon\",\n\t\t\"employee_salary\":\"320800\",\n\t\t\"employee_age\":\"61\"\n\t\t,\"profile_image\":\"\"\n\t},\n\t{\n\t\t\"id\":\"2\",\n\t\t\"employee_name\":\"Garrett Winters\",\n```\n\nA single line from the API-Example above, when selected, gets converted into the following:\n\n```csharp\n// C#\nstring name = apiResult.data[0].employee_name;\n```\nYou can pick from several common languages. The output adapts to whichever language is selected:\n\n```vbnet\n' VB .NET\nDim name As String = apiResult.data(0).employee_name\n```\n```php\n// PHP\n$name = apiResult-\u003edata[0]-\u003eemployee_name;\n```\n```python\n# Python\nname = apiResult.data[0].employee_name\n```\n\n## Downloads: \n\nWinForms-Edition: [see releases](https://github.com/TobiHatti/API-2-OOP/releases)\n\nUWP-Versions / Windows App: Download from Microsoft-Store (Pending...)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftobihatti%2Fapi-2-oop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftobihatti%2Fapi-2-oop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftobihatti%2Fapi-2-oop/lists"}