{"id":20291667,"url":"https://github.com/blazingdocs/blazingdocs-go","last_synced_at":"2026-05-17T11:32:31.882Z","repository":{"id":144337604,"uuid":"398289102","full_name":"blazingdocs/blazingdocs-go","owner":"blazingdocs","description":"BlazingDocs Go client","archived":false,"fork":false,"pushed_at":"2021-12-25T09:09:35.000Z","size":54,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-17T16:47:02.028Z","etag":null,"topics":["api","csv","doc","document-generation","documents","docx","json","mail-merge","odt","pdf","reports","templates","xml"],"latest_commit_sha":null,"homepage":"https://blazingdocs.com","language":"Go","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/blazingdocs.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":"2021-08-20T13:40:44.000Z","updated_at":"2021-12-25T09:02:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"c7b41072-0be5-46d1-87a7-677958e23f2e","html_url":"https://github.com/blazingdocs/blazingdocs-go","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/blazingdocs/blazingdocs-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blazingdocs","download_url":"https://codeload.github.com/blazingdocs/blazingdocs-go/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33136718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["api","csv","doc","document-generation","documents","docx","json","mail-merge","odt","pdf","reports","templates","xml"],"created_at":"2024-11-14T15:13:27.493Z","updated_at":"2026-05-17T11:32:31.877Z","avatar_url":"https://github.com/blazingdocs.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BlazingDocs GO client\nHigh-performance document generation API. Generate documents and reports from СSV, JSON, XML with 99,9% uptime and 24/7 monitoring.\n\n## Installation\n\n```go\nimport (\n    \"github.com/blazingdocs/blazingdocs-go\"\n    \"github.com/blazingdocs/blazingdocs-go/config\"\n)\n```\n\n```\ngo get -u github.com/blazingdocs/blazingdocs-go\n```\n\n## Integration basics\n\n### Setup\n\nYou can get your API Key at https://app.blazingdocs.com\n\n```go\nconfig.Default = config.Init(\"YOUR-API-KEY\")\nclient := blazingdocs.Client{\n    Config: *config.Default,\n}\n```\n\n### Getting account info\n\n```go\nresp, err := client.GetAccount()\n```\n\n### Getting merge templates list\n\n```go\nvar s string\ntempResp, tempErr := client.GetTemplates(s)\n```\n\n### Getting usage info\n\n```go\nusageResp, usageErr := client.GetUsage()\n```\n\n### Executing merge\n\n```go\nfile, _ := ioutil.ReadFile(\"../PO-Template.json\")\ns := string(file)\n\nparams := parameters.MergeParameters{\n    DataSourceName: \"data\", // data source name\n    DataSourceType: utils.JSON_TYPE, // data in json format\n    Strict:         true, // keep json types\n    ParseColumns:   false, // true if data is csv file with column names\n    Sequence:       false, // data is object\n}\n\nffile, _ := os.Open(\"../PO-Template.docx\")\nformFile := utils.FormFile{\n    Name:    \"PO-Template.docx\",\n    Content: ffile,\n}\n\nconfig.Default = config.Init(\"YOUR-API-KEY\")\nclient := blazingdocs.Client{\n    Config: *config.Default,\n}\n\nresp, err := client.MergeWithFile(s, \"output.pdf\", params, formFile)\n```\n\n## Documentation\n\nSee more details here https://docs.blazingdocs.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblazingdocs%2Fblazingdocs-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblazingdocs%2Fblazingdocs-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblazingdocs%2Fblazingdocs-go/lists"}