{"id":18893245,"url":"https://github.com/manomanotech/finout","last_synced_at":"2026-01-19T13:01:11.168Z","repository":{"id":257792659,"uuid":"861985482","full_name":"ManoManoTech/finout","owner":"ManoManoTech","description":"Finout API via Go","archived":false,"fork":false,"pushed_at":"2025-05-15T16:48:18.000Z","size":42,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T15:51:34.130Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://docs.finout.io/en/collections/166488-api","language":"Go","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/ManoManoTech.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}},"created_at":"2024-09-23T20:40:10.000Z","updated_at":"2025-08-27T21:56:57.000Z","dependencies_parsed_at":"2024-09-24T07:40:09.808Z","dependency_job_id":null,"html_url":"https://github.com/ManoManoTech/finout","commit_stats":null,"previous_names":["trois-six/finout","trois-six/finout-go"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ManoManoTech/finout","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManoManoTech%2Ffinout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManoManoTech%2Ffinout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManoManoTech%2Ffinout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManoManoTech%2Ffinout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ManoManoTech","download_url":"https://codeload.github.com/ManoManoTech/finout/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManoManoTech%2Ffinout/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28568833,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T12:50:50.164Z","status":"ssl_error","status_checked_at":"2026-01-19T12:50:42.704Z","response_time":67,"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":[],"created_at":"2024-11-08T08:12:40.790Z","updated_at":"2026-01-19T13:01:11.142Z","avatar_url":"https://github.com/ManoManoTech.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\n**This package allows you to quickly and easily use the Finout API via Go.**\n\nThis package provides full support for all Finout [API](https://docs.finout.io/en/collections/166488-api) endpoints.\n\n# Installation\n\n## Install Package\n\n`go get github.com/ManoManoTech/finout`\n\n## Dependencies\n\n- [oapi-codegen](https://github.com/oapi-codegen/oapi-codegen), this package is basically the generated code from oapi-codegen for the forged Finout API spec.\n\n# Quick Start\n\n## Hello Finout\n\nThe following is the minimum needed code to call the Finout API.\n\n```go\npackage main\n\nimport (\n    \"context\"\n    \"io\"\n    \"log\"\n    \"net/http\"\n\n    \"github.com/ManoManoTech/finout\"\n)\n\nfunc main() {\n    client, err := finout.NewSecuredClientWithResponses(\"YOUR_CLIENT_ID\", \"YOUR_SECRET_KEY\")\n    if err != nil {\n        log.Fatal(err)\n    }\n\n    resp, err := client.GetViewWithResponse(context.Background())\n    if err != nil {\n        log.Fatal(err)\n    }\n\n    if resp.StatusCode() == http.StatusOK \u0026\u0026 resp.JSON200 != nil \u0026\u0026 resp.JSON200.Data != nil {\n        for _, view := range *resp.JSON200.Data {\n            log.Println(*view.Id, *view.Name)\n        }\n    } else {\n        log.Fatalf(\"Status code: %d\", resp.StatusCode())\n    }\n}\n```\n\n## Regenerate the client\n\nIf you need to regenerate the client, you can use the following command:\n\n```bash\ngo generate\n```\n\n# Documentation\n\nIf you need to check the spec, you can use the [Swagger Editor](https://editor.swagger.io/?url=https://raw.githubusercontent.com/ManoManoTech/finout/refs/heads/main/finout.yaml) with the spec in `finout.yaml`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanomanotech%2Ffinout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanomanotech%2Ffinout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanomanotech%2Ffinout/lists"}