{"id":21971417,"url":"https://github.com/robinbraemer/CloudflareAPI","last_synced_at":"2025-07-22T17:33:05.014Z","repository":{"id":39961380,"uuid":"122212332","full_name":"robinbraemer/CloudflareAPI","owner":"robinbraemer","description":"The most complete and extensible Cloudflare API v4 client library for Java.","archived":false,"fork":false,"pushed_at":"2024-11-15T21:38:51.000Z","size":166,"stargazers_count":60,"open_issues_count":15,"forks_count":24,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-26T20:54:07.517Z","etag":null,"topics":["api","client","cloudflare","cloudflare-api","dns","java","java-8","lib","library","oop"],"latest_commit_sha":null,"homepage":"https://api.cloudflare.com/","language":"Java","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/robinbraemer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"robinbraemer","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":["https://paypal.me/robinbraemer"]}},"created_at":"2018-02-20T14:55:23.000Z","updated_at":"2024-11-23T09:56:36.000Z","dependencies_parsed_at":"2024-04-04T22:32:24.630Z","dependency_job_id":"c8600659-1f99-441b-9834-d172d3e8255e","html_url":"https://github.com/robinbraemer/CloudflareAPI","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinbraemer%2FCloudflareAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinbraemer%2FCloudflareAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinbraemer%2FCloudflareAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinbraemer%2FCloudflareAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robinbraemer","download_url":"https://codeload.github.com/robinbraemer/CloudflareAPI/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227149556,"owners_count":17738261,"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","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","cloudflare","cloudflare-api","dns","java","java-8","lib","library","oop"],"created_at":"2024-11-29T14:50:24.732Z","updated_at":"2024-11-29T14:50:38.702Z","avatar_url":"https://github.com/robinbraemer.png","language":"Java","readme":"# The Cloudflare - API/Library for Java\n\n[![Jitpack-Month][jitpack-month-img]][jitpack-url]\n[![JitPack][jitpack-img]][jitpack-url]\n[![Travis][travis-img]][travis-url]\n[![License][license-img]][license-url]\n\u003c!-- [![Gitter][gitter-img]][gitter-url] --\u003e\n\nThis Cloudflare API/Library interacts with [Cloudflare's fast API v4](https://api.cloudflare.com/)\nand allows you to access every single feature _(even if it isn't added yet)_ of Cloudflare's API faster and much easier!\n\nTo add a dependency on this Cloudflare-API/Library using Maven or Gradle use the following:\n\n**Maven:**\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.github.robinbraemer\u003c/groupId\u003e\n  \u003cartifactId\u003ecloudflareapi\u003c/artifactId\u003e\n  \u003cversion\u003eGIT_COMMIT_SHA\u003c/version\u003e\n\u003c/dependency\u003e\n\t\n\u003crepositories\u003e\n  \u003crepository\u003e\n    \u003cid\u003ejitpack.io\u003c/id\u003e\n    \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n  \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\n**Gradle:**\n```\ndependencies {\n  compile 'com.github.robinbraemer:cloudflareapi:\u003cGIT_COMMIT_SHA\u003e'\n}\n\nallprojects {\n  repositories {\n    maven { url 'https://jitpack.io' }\n  }\n}\n```\n\n## Features\n- **easy to build cloudflare requests (builder pattern)**\n- **able to access every corner of cloudflare's api**\n- **parsing results as objects (object oriented representation)**\n- **it is an extremely flexible api**\n- **asynchronicity support**\n- **token \u0026 key+email authentication support**\n\n## Getting Started\nFirst, you define the access object.\n```java\nString CF_API_TOKEN = \"your_cloudflare_api_token\";\nCloudflareAccess cfAccess = new CloudflareAccess(CF_API_TOKEN);\n```\n\nOr use key+email authentication:\n```java\nString CF_API_KEY = \"your_cloudflare_api_key\";\nString CF_EMAIL = \"your_cloudflare@email.com\";\nCloudflareAccess cfAccess = new CloudflareAccess(CF_API_KEY, CF_EMAIL);\n```\n\nThen you can create cloudflare requests.\n```java\nCloudflareResponse\u003cList\u003cZone\u003e\u003e response =\n    new CloudflareRequest( Category.LIST_ZONES, cfAccess )\n        .asObjectList( Zone.class );\n```\n\n## Learn more about the Cloudflare - client library\n\n- Check out our users' guide in the wiki, [Cloudflare - API/Library explained][wiki-url].\n- There is a lot to discover about this api/library.\n\n### Licensing\nLicensed under the Apache License 2.0. See the [LICENSE](LICENSE) file for details.\n\n\n\n\n\n\n[releases-url]: https://github.com/robinbraemer/CloudflareAPI/releases\n[wiki-url]: https://github.com/robinbraemer/CloudflareAPI/wiki\n\n[travis-url]: https://travis-ci.org/robinbraemer/CloudflareAPI\n[travis-img]: https://travis-ci.org/robinbraemer/CloudflareAPI.svg?branch=master\n\n[jitpack-url]: https://jitpack.io/#robinbraemer/CloudflareAPI\n[jitpack-img]: https://jitpack.io/v/robinbraemer/CloudflareAPI.svg\n[jitpack-month-img]: https://jitpack.io/v/robinbraemer/CloudflareAPI/month.svg\n\n[gitter-url]: https://gitter.im/CloudflareAPI/Lobby\n[gitter-img]: https://badges.gitter.im/Join%20Chat.svg\n\n[license-url]: https://github.com/robinbraemer/CloudflareAPI/blob/master/LICENSE\n[license-img]: https://img.shields.io/badge/license-Apache_2.0-blue.svg?style=flat\n","funding_links":["https://github.com/sponsors/robinbraemer","https://paypal.me/robinbraemer"],"categories":["Java"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinbraemer%2FCloudflareAPI","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobinbraemer%2FCloudflareAPI","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinbraemer%2FCloudflareAPI/lists"}