{"id":36985535,"url":"https://github.com/complycube/complycube-web-sdk","last_synced_at":"2026-01-18T00:30:26.361Z","repository":{"id":327614596,"uuid":"949900711","full_name":"complycube/complycube-web-sdk","owner":"complycube","description":"A sample website integrating the ComplyCube SDK.","archived":false,"fork":false,"pushed_at":"2025-12-04T16:54:36.000Z","size":6,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-08T00:56:08.709Z","etag":null,"topics":["aml","fintech","fraud-detection","fraud-protection","identity","identity-provider","kyc","kyc-api","sdk","website"],"latest_commit_sha":null,"homepage":"https://www.complycube.com","language":"HTML","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/complycube.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-17T10:16:57.000Z","updated_at":"2025-08-15T10:47:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/complycube/complycube-web-sdk","commit_stats":null,"previous_names":["complycube/complycube-web-sdk"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/complycube/complycube-web-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/complycube%2Fcomplycube-web-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/complycube%2Fcomplycube-web-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/complycube%2Fcomplycube-web-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/complycube%2Fcomplycube-web-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/complycube","download_url":"https://codeload.github.com/complycube/complycube-web-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/complycube%2Fcomplycube-web-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28399507,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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":["aml","fintech","fraud-detection","fraud-protection","identity","identity-provider","kyc","kyc-api","sdk","website"],"created_at":"2026-01-13T23:02:28.979Z","updated_at":"2026-01-13T23:02:29.569Z","avatar_url":"https://github.com/complycube.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ComplyCube Example Website\n\nThis repository provides a basic html website that uses the ComplyCube SDK. It guides you through the ComplyCube identity verification process, which includes collecting client ID documents, proof of address documents, and biometric selfies.\n\n## To run the website\n\n### Generating an SDK token\n\nBefore using the ComplyCube SDK, you will need to generate an SDK token. This involves [creating a client](https://docs.complycube.com/documentation/guides/web-sdk-quick-guide/integration-guide#create-a-client) and [generating a token](https://docs.complycube.com/documentation/guides/web-sdk-quick-guide/integration-guide#generate-an-sdk-token). Follow the documentation in the links or the simple steps below.\n\n1. A client represents the individual for whom you need to perform various KYC checks.  A client is required to generate an SDK token. This must be done in your backend server:\n\n   ```bash\n   curl -X POST https://api.complycube.com/v1/clients \\\n     -H 'Authorization: \u003cYOUR_API_KEY\u003e' \\\n     -H 'Content-Type: application/json' \\\n     -d '{\n          \"type\": \"person\",\n          \"email\": \"john.doe@example.com\",\n          \"personDetails\":{\n               \"firstName\": \"John\",\n               \"lastName\" :\"Doe\"\n          }\n        }'\n   ```\n\n   Example response:\n   ```bash\n   {\n      \"id\": \"5eb04fcd0f3e360008035eb1\",\n      \"type\": \"person\",\n      \"email\": \"john.doe@example.com\",\n      \"personDetails\": {\n          \"firstName\": \"John\",\n          \"lastName\": \"Doe\",\n      },\n      \"createdAt\": \"2020-01-04T17:24:29.146Z\",\n      \"updatedAt\": \"2020-01-04T17:24:29.146Z\"\n   }  \n   ```\n\n3. SDK Tokens enable clients to securely send personal data from your web application's frontend to ComplyCube:\n\n   ```bash\n   curl -X POST https://api.complycube.com/v1/tokens \\\n     -H 'Authorization: \u003cYOUR_API_KEY\u003e' \\\n     -H 'Content-Type: application/json' \\\n     -d '{\n          \"clientId\": \"CLIENT_ID\",\n          \"referrer\": \"https://www.example.com/*\"\n        }'\n   ```\n\n   Example response:\n   ```bash\n   {\n      \"token\": \"\u003cCLIENT_TOKEN\u003e\"\n   }  \n   ```\n   \n### Serving the website\n\nOnce you have generated your SDK token, open `complycube-web-sdk/index.html` in your code editor of choice. Go to line 42 and change `\u003cSDK_TOKEN\u003e` to the token you have just generated.\n\nYou can use any method to serve up the `index.html` file. We recommend using the [Live Server VS Code extension](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) to anyone using VS Code.\n\n## Integrating our SDK\n\nFor detailed instructions on integrating our SDK, please refer to our [integration guide](https://docs.complycube.com/documentation/guides/web-sdk-quick-guide/integration-guide).\n\nFor an overview of our core platform and its multiple features, please refer to our [user guide](https://docs.complycube.com) or browse the [API reference](https://docs.complycube.com/api-reference) for fine-grained documentation of all our services.\n\n\n## About ComplyCube\n\n[ComplyCube](https://www.complycube.com/en), an award-winning SaaS \u0026 API platform, offers innovative Identity Verification (IDV), Anti-Money Laundering (AML), and Know Your Customer (KYC) compliance solutions. Its extensive customer base spans several industries, such as financial services, transport, healthcare, e-commerce, cryptocurrency, FinTech, and telecoms, making ComplyCube a leading figure in the IDV space.\n\u003cbr\u003e\n\u003cbr\u003e\nThis ISO-certified platform is notable for its quick omnichannel integration and a wide range of services. It provides Low/No-Code solutions, robust API, Mobile SDKs, Client Libraries, and smooth CRM integrations.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomplycube%2Fcomplycube-web-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcomplycube%2Fcomplycube-web-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomplycube%2Fcomplycube-web-sdk/lists"}