{"id":37194710,"url":"https://github.com/burakkaraceylan/xapi-go","last_synced_at":"2026-01-14T22:38:25.353Z","repository":{"id":53864952,"uuid":"521744141","full_name":"burakkaraceylan/xapi-go","owner":"burakkaraceylan","description":"A fast xApi client implementation written in Go","archived":false,"fork":false,"pushed_at":"2022-08-15T11:18:09.000Z","size":354,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-21T09:39:41.834Z","etag":null,"topics":["api","client","experience","golang","xapi"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/burakkaraceylan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-05T18:45:57.000Z","updated_at":"2022-08-06T16:07:09.000Z","dependencies_parsed_at":"2022-08-13T03:10:30.311Z","dependency_job_id":null,"html_url":"https://github.com/burakkaraceylan/xapi-go","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/burakkaraceylan/xapi-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/burakkaraceylan%2Fxapi-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/burakkaraceylan%2Fxapi-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/burakkaraceylan%2Fxapi-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/burakkaraceylan%2Fxapi-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/burakkaraceylan","download_url":"https://codeload.github.com/burakkaraceylan/xapi-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/burakkaraceylan%2Fxapi-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28436682,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: 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","client","experience","golang","xapi"],"created_at":"2026-01-14T22:38:24.374Z","updated_at":"2026-01-14T22:38:25.329Z","avatar_url":"https://github.com/burakkaraceylan.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XGO-API\n[![Go Reference](https://pkg.go.dev/badge/github.com/burakkaraceylan/xapi-go.svg)](https://pkg.go.dev/github.com/burakkaraceylan/xapi-go)\n[![GitHub go.mod Go version of a Go module](https://img.shields.io/github/go-mod/go-version/gomods/athens.svg)](https://github.com/gomods/athens)\n[![codecov](https://codecov.io/gh/burakkaraceylan/xapi-go/branch/main/graph/badge.svg?token=ECR4A27QDV)](https://codecov.io/gh/burakkaraceylan/xapi-go)\n[![Go Report Card](https://goreportcard.com/badge/github.com/burakkaraceylan/xapi-go)](https://goreportcard.com/report/github.com/burakkaraceylan/xapi-go)\n\n## Overview\n\nXGO-Api is a client library implemention for The Experience API (or xAPI) written in Golang. Repo also includes a CLI tool that can query learning record stores.\n\n## The Experience API (xAPI)\n\nThe Experience API (or xAPI) is a new specification for learning technology that makes it possible to collect data about the wide range of experiences a person has (online and offline). This API captures data in a consistent format about a person or group’s activities from many technologies. Very different systems are able to securely communicate by capturing and sharing this stream of activities using xAPI’s simple vocabulary.\n\n## Installation\n\tgo get github.com/burakkaraceylan/xapi-go@latest\n## Basic Usage\n\tlrs, err := client.NewRemoteLRS(\n\t\t\"https://cloud.scorm.com/ScormEngineInterface/TCAPI/public/\",\n\t\t\"1.0.0\",\n\t\t\"Basic VGVzdFVzZXI6cGFzc3dvcmQ=\",\n\t)\n\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tstatement, err := lrs.GetStatement(\"b1893eed-14e6-4ac2-b154-3c6e828c2297\")\n\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tstr, _ := utils.ToJson(stmt, true)\n\tfmt.Println(str)\n\n## CLI Usage\n\tUsage:\n\txapi-go [flags]\n\txapi-go [command]\n\n\tAvailable Commands:\n\tcompletion   Generate the autocompletion script for the specified shell\n\tgetStatement \n\thelp         Help about any command\n\n\tFlags:\n\t\t--auth string       Authentication header (Basic, Bearer etc...)\n\t\t--endpoint string   URL of the API endpoint\n\t-h, --help              help for xapi-go\n\t\t--password string   API user's password\n\t\t--username string   API user's username\n\t\t--version string    API version\n\n\tUse \"xapi-go [command] --help\" for more information about a command.\n\n## TODO\n### Module\n- [x] About Resource\n- [X] Statement Resource\n- [X] State Resource\n- [X] Documents Resource\n- [X] Agents Resource\n- [X] Activities Resource\n- [X] Agent Profile Resource\n- [X] Activity Profile Resource\n\n### Improvements\n- [ ] Better error handling\n- [ ] Better document\n- [ ] More tests\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fburakkaraceylan%2Fxapi-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fburakkaraceylan%2Fxapi-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fburakkaraceylan%2Fxapi-go/lists"}