{"id":30110583,"url":"https://github.com/monoscope-tech/apitoolkit-phoenix","last_synced_at":"2026-03-16T09:34:14.024Z","repository":{"id":220363232,"uuid":"751384307","full_name":"monoscope-tech/apitoolkit-phoenix","owner":"monoscope-tech","description":"APItoolkit's Elixir Phoenix client SDK.","archived":false,"fork":false,"pushed_at":"2024-07-10T09:49:57.000Z","size":61,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-15T03:17:10.221Z","etag":null,"topics":["apitoolkit","apitoolkit-sdk","elixir","elixir-lang","elixir-phoenix"],"latest_commit_sha":null,"homepage":"https://apitoolkit.io/docs/sdks/elixir/phoenix/","language":"Elixir","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/monoscope-tech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2024-02-01T14:04:55.000Z","updated_at":"2024-07-10T09:50:00.000Z","dependencies_parsed_at":"2024-06-08T19:27:22.249Z","dependency_job_id":"448b31b7-5042-4d71-9887-172f8a2d26c5","html_url":"https://github.com/monoscope-tech/apitoolkit-phoenix","commit_stats":null,"previous_names":["apitoolkit/apitoolkit-phoenix","monoscope-tech/apitoolkit-phoenix"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/monoscope-tech/apitoolkit-phoenix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monoscope-tech%2Fapitoolkit-phoenix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monoscope-tech%2Fapitoolkit-phoenix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monoscope-tech%2Fapitoolkit-phoenix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monoscope-tech%2Fapitoolkit-phoenix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/monoscope-tech","download_url":"https://codeload.github.com/monoscope-tech/apitoolkit-phoenix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monoscope-tech%2Fapitoolkit-phoenix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28078438,"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","status":"online","status_checked_at":"2025-12-27T02:00:05.897Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["apitoolkit","apitoolkit-sdk","elixir","elixir-lang","elixir-phoenix"],"created_at":"2025-08-10T04:47:41.368Z","updated_at":"2025-12-27T12:39:07.235Z","avatar_url":"https://github.com/monoscope-tech.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n![APItoolkit's Logo](https://github.com/apitoolkit/.github/blob/main/images/logo-white.svg?raw=true#gh-dark-mode-only)\n![APItoolkit's Logo](https://github.com/apitoolkit/.github/blob/main/images/logo-black.svg?raw=true#gh-light-mode-only)\n\n## Phoenix SDK\n\n[![APItoolkit SDK](https://img.shields.io/badge/APItoolkit-SDK-0068ff?logo=phoenixframework)](https://github.com/topics/apitoolkit-sdk) [![Join Discord Server](https://img.shields.io/badge/Chat-Discord-7289da)](https://apitoolkit.io/discord?utm_campaign=devrel\u0026utm_medium=github\u0026utm_source=sdks_readme) [![APItoolkit Docs](https://img.shields.io/badge/Read-Docs-0068ff)](https://apitoolkit.io/docs/sdks/elixir/phoenix?utm_campaign=devrel\u0026utm_medium=github\u0026utm_source=sdks_readme) \n\nAPItoolkit is an end-to-end API and web services management toolkit for engineers and customer support teams. To integrate your Elixir Phoenix application with APItoolkit, you need to use this SDK to monitor incoming traffic, aggregate the requests, and then deliver them to the APItoolkit's servers.\n\n\u003c/div\u003e\n\n---\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Configuration](#configuration)\n- [Contributing and Help](#contributing-and-help)\n- [License](#license)\n\n---\n\n## Installation\n\nTo install the SDK, kindly add `apitoolkit_phoenix` to your list of dependencies in the `mix.exs` file like so:\n\n```elixir\ndef deps do\n  [\n    {:apitoolkit_phoenix, \"~\u003e 0.1.1\"}\n  ]\nend\n```\n\nThen, run the `mix deps.get` command to install the `apitoolkit_phoenix` dependency.\n\n## Configuration\n\nNext, import and initialize the `ApitoolkitPhoenix` Plug in your `router.ex` file like so:\n\n```elixir\ndefmodule HelloWeb.Router do\n  use HelloWeb, :router\n  use Plug.ErrorHandler\n  import ApitoolkitPhoenix\n\n  pipeline :api do\n    plug :accepts, [\"json\"]\n    # Other plugs\n    plug ApitoolkitPhoenix,\n      config: %{\n        api_key: \"{ENTER_YOUR_API_KEY_HERE}\",\n        debug: false,\n      }\n  end\nend\n```\n\n\u003e [!NOTE]\n\u003e \n\u003e The `{ENTER_YOUR_API_KEY_HERE}` demo string should be replaced with the [API key](https://apitoolkit.io/docs/dashboard/settings-pages/api-keys?utm_campaign=devrel\u0026utm_medium=github\u0026utm_source=sdks_readme) generated from the APItoolkit dashboard.\n\n\u003cbr /\u003e\n\n\u003e [!IMPORTANT]\n\u003e \n\u003e To learn more configuration options (redacting fields, error reporting, outgoing requests, etc.), please read this [SDK documentation](https://apitoolkit.io/docs/sdks/elixir/phoenix?utm_campaign=devrel\u0026utm_medium=github\u0026utm_source=sdks_readme).\n\n## Contributing and Help\n\nTo contribute to the development of this SDK or request help from the community and our team, kindly do any of the following:\n- Read our [Contributors Guide](https://github.com/apitoolkit/.github/blob/main/CONTRIBUTING.md).\n- Join our community [Discord Server](https://apitoolkit.io/discord?utm_campaign=devrel\u0026utm_medium=github\u0026utm_source=sdks_readme).\n- Create a [new issue](https://github.com/apitoolkit/apitoolkit-phoenix/issues/new/choose) in this repository.\n\n## License\n\nThis repository is published under the [MIT](LICENSE) license.\n\n---\n\n\u003cdiv align=\"center\"\u003e\n    \n\u003ca href=\"https://apitoolkit.io?utm_campaign=devrel\u0026utm_medium=github\u0026utm_source=sdks_readme\" target=\"_blank\" rel=\"noopener noreferrer\"\u003e\u003cimg src=\"https://github.com/apitoolkit/.github/blob/main/images/icon.png?raw=true\" width=\"40\" /\u003e\u003c/a\u003e\n\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonoscope-tech%2Fapitoolkit-phoenix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonoscope-tech%2Fapitoolkit-phoenix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonoscope-tech%2Fapitoolkit-phoenix/lists"}