{"id":36667849,"url":"https://github.com/pacedotdev/pace","last_synced_at":"2026-01-12T10:37:05.274Z","repository":{"id":57534656,"uuid":"279588149","full_name":"pacedotdev/pace","owner":"pacedotdev","description":"Go client library and CLI tool for Pace.","archived":false,"fork":false,"pushed_at":"2020-10-02T16:46:30.000Z","size":170,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-20T06:26:47.724Z","etag":null,"topics":["api","dev","integration"],"latest_commit_sha":null,"homepage":"https://pace.dev/docs","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/pacedotdev.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-07-14T13:09:07.000Z","updated_at":"2023-01-11T04:24:19.000Z","dependencies_parsed_at":"2022-09-26T18:21:39.064Z","dependency_job_id":null,"html_url":"https://github.com/pacedotdev/pace","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/pacedotdev/pace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacedotdev%2Fpace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacedotdev%2Fpace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacedotdev%2Fpace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacedotdev%2Fpace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pacedotdev","download_url":"https://codeload.github.com/pacedotdev/pace/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacedotdev%2Fpace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338713,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"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":["api","dev","integration"],"created_at":"2026-01-12T10:37:04.659Z","updated_at":"2026-01-12T10:37:05.257Z","avatar_url":"https://github.com/pacedotdev.png","language":"Go","readme":"![](pace.dev-banner.jpg)\n\n# Welcome to Pace for Developers. \n\nIf you're new here, we recommend you take a few minutes to understand how Pace for Developers works:\n\n* [Read our introduction to Pace for Developers](https://pace.dev/docs/api/intro)\n* [Learn about API keys in Pace](https://pace.dev/docs/api/auth)\n\n### On this page\n\n* [Pace CLI (command line interface)](#pace-cli)\n* [Go client library](#go-client-library)\n* [Pace JSON/HTTP API](#pace-jsonhttp-api)\n\n# Pace CLI\n\nThe Pace command line interface provides programatic access to Pace.\n\n```bash\npace help\npace list\npace templates\npace \u003cservice\u003e.\u003cmethod\u003e -Flags=value\n```\n\nSee the help:\n\n```bash\n$ pace help\n```\n\nCheck the version:\n\n```bash\n$ pace version\n```\n\n* **What next?** To learn more, see the [Pace CLI documentation](https://pace.dev/docs/cli)\n\n# Go client library\n\nTo use the Go client:\n\n```bash\ngo get github.com/pacedotdev/pace\n```\n\nThen import it into your code:\n\n* Use `pace.New(apikey)` to create a `pace.Client` with your API key ([Read more about API keys in Pace](https://pace.dev/docs/api/auth))\n* Call the function to create the service you need (e.g. `pace.NewCardsService`) passing in the `pace.Client`\n* Call the methods on that service to access the Pace API\n\nHere is a complete example:\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\n\t\"github.com/pacedotdev/pace\"\n)\n\nfunc run(ctx context.Context) error {\n\tapikey := os.Getenv(\"PACE_API_KEY\")\n\tsecret := os.Getenv(\"PACE_API_SECRET\")\n\tclient := pace.New(apikey, secret)\n\tcardsService := pace.NewCardsService(client)\n\t\n\tresp, err := cardsService.GetCard(ctx, pace.CreateCardRequest{\n\t\tOrgID:  \"your-org-id\",\n\t\tCardID: \"12\",\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfmt.Println(\"Card 12:\", resp.Card.Title)\n}\n\nfunc main() {\n\tctx := context.Background()\n\tif err := run(ctx); err != nil {\n\t\tfmt.Fprintf(os.Stderr, \"err: %s\\n\", err)\n\t}\n}\n```\n\n# Pace JSON/HTTP API\n\nYou can make plain old HTTP calls with JSON payloads to interact with Pace.\n\n* Make calls directly to `https://pace.dev/api`\n* Set the `Content-Type` header to `application/json`\n* Use `POST` method\n* Set `X-API-KEY` and `X-API-SIGNATURE` headers ([Read more about API keys in Pace](https://pace.dev/docs/api/auth))\n\n```\nPOST https://pace.dev/api/CardsService.GetCard\nContent-Type: application/json\nX-API-KEY: your-api-key\n\n{\n\t\"OrgID\": \"your-org-id\",\n\t\"CardID\": \"12\",\n}\n```\n\nThe response varies depending on which method you're calling, but there is always an `Error` string field which is empty (along with a `200` status code) if the operation was successful.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpacedotdev%2Fpace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpacedotdev%2Fpace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpacedotdev%2Fpace/lists"}