{"id":21816981,"url":"https://github.com/maartenvanvliet/striped","last_synced_at":"2025-10-05T12:45:31.165Z","repository":{"id":60501937,"uuid":"542664067","full_name":"maartenvanvliet/striped","owner":"maartenvanvliet","description":"Library to interface with the Stripe Api.","archived":false,"fork":false,"pushed_at":"2024-02-01T00:38:43.000Z","size":3140,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-09T11:49:16.261Z","etag":null,"topics":["openapi","stripe"],"latest_commit_sha":null,"homepage":"https://hexdocs.pm/striped/Stripe.html","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/maartenvanvliet.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":"2022-09-28T15:36:58.000Z","updated_at":"2023-06-14T00:17:11.000Z","dependencies_parsed_at":"2023-12-22T03:17:21.040Z","dependency_job_id":"6cdce94a-87be-4411-be91-67b1112710e1","html_url":"https://github.com/maartenvanvliet/striped","commit_stats":{"total_commits":86,"total_committers":4,"mean_commits":21.5,"dds":0.4883720930232558,"last_synced_commit":"cbd1baea92a7d0a4e94d954dd4cb74eb4cf5d86d"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/maartenvanvliet/striped","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maartenvanvliet%2Fstriped","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maartenvanvliet%2Fstriped/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maartenvanvliet%2Fstriped/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maartenvanvliet%2Fstriped/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maartenvanvliet","download_url":"https://codeload.github.com/maartenvanvliet/striped/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maartenvanvliet%2Fstriped/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277170785,"owners_count":25773066,"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-09-27T02:00:08.978Z","response_time":73,"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":["openapi","stripe"],"created_at":"2024-11-27T15:38:32.360Z","updated_at":"2025-10-05T12:45:31.117Z","avatar_url":"https://github.com/maartenvanvliet.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Striped\n## [![Hex pm](http://img.shields.io/hexpm/v/striped.svg?style=flat)](https://hex.pm/packages/striped) [![Hex Docs](https://img.shields.io/badge/hex-docs-9768d1.svg)](https://hexdocs.pm/striped) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) ![.github/workflows/test.yml](https://github.com/maartenvanvliet/striped/actions/workflows/test.yml/badge.svg)\n\u003c!-- MDOC !--\u003e\n\nLibrary to interface with the Stripe Api. Most of the code is generated from the [Stripe OpenApi](https://github.com/stripe/openapi) definitions.\n\nInspiration was drawn from [Stripity Stripe](https://github.com/beam-community/stripity_stripe) and [openapi](https://github.com/wojtekmach/openapi).\n\n## Installation\n\n```elixir\ndef deps do\n  [\n    {:striped, \"~\u003e 0.5.0\"}\n  ]\nend\n```\n\n## Usage\n\n```elixir\nclient = Stripe.new(api_key: \"sk_test_123\")\n{:ok, %Stripe.Customer{}} = Stripe.Customer.retrieve(client, \"cus123\")\n\n{:ok, %Stripe.Customer{}} =\n               Stripe.Customer.create(client, %{\n                 description: \"Test description\"\n               })\n\n```\n\nFor the exact parameters you can consult the Stripe docs.\n\n### Errors\nStripe errors can be found in the `Stripe.ApiErrors` struct. \nNetwork errors etc. will be found in the error term.\n\n```elixir\n{:error, %Stripe.ApiErrors{}} =\n               Stripe.Customer.retrieve(client, \"bogus\")\n```        \n\n## Telemetry\nStripe api calls made through this library emit Telemetry events. See the \n`Stripe.Telemetry` module for more information\n\n### Api Version\n`Striped` uses the OpenApi definitions to build itself, so it \nuses the latest Api Version. You can however override the \nversion by passing the `:version` option to the client.\n\nThis SDK is generated for version: **__VERSION__**\n\nSee https://stripe.com/docs/upgrades#__VERSION__ for breaking changes.\n\n### Limitations\n\n  * File Uploads currently don't work. \n  * Connected Accounts are not supported yet. ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaartenvanvliet%2Fstriped","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaartenvanvliet%2Fstriped","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaartenvanvliet%2Fstriped/lists"}