Dev.codewars.com is a subdomain of codewars.com, which was created on 2004-06-29,making it 20 years ago.
Discover dev.codewars.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site
HomePage size: 58.431 KB |
Page Load Time: 0.939152 Seconds |
Website IP Address: 172.66.40.185 |
API Reference apidocs.tankutility.com |
Edamam - Food Database API, Nutrition API and Recipe API developer.edamam.com |
Baltimore City Department of Legislative Reference | Legislative Reference legislativereference.baltimorecity.gov |
Digilent Reference - Digilent Reference reference.digilentinc.com |
Upwork API Reference developers.upwork.com |
Drupal 8.8.x | API reference | Drupal API api.drupal.org |
Instagift API Reference apidocs.instagift.com |
PassKit v2 API Reference dev.passkit.net |
ZMQ API reference api.zeromq.org |
PandaDoc for Developers — API Reference, SDK, and Documentation developers.pandadoc.com |
Highcharts JS API Reference api.highcharts.com |
Quoine Exchange API Reference developers.quoine.com |
DayPilot Pro JavaScript API Reference api.daypilot.org |
Grail Watch Reference – A Reference Library for Watches from Grail reference.grail-watch.com |
Introduction – Codewars API Reference https://dev.codewars.com/ |
Date: Tue, 14 May 2024 10:55:56 GMT |
Content-Type: text/html; charset=utf-8 |
Transfer-Encoding: chunked |
Connection: keep-alive |
last-modified: Fri, 09 Apr 2021 19:11:57 GMT |
access-control-allow-origin: * |
expires: Tue, 14 May 2024 10:25:49 GMT |
Cache-Control: max-age=600 |
x-proxy-cache: MISS |
x-github-request-id: 5BE0:2E7278:4051B92:425CD2A:664339D4 |
Age: 0 |
via: 1.1 varnish |
x-served-by: cache-sjc1000099-SJC |
x-cache: HIT |
x-cache-hits: 0 |
x-timer: S1715684156.994251,VS0,VE105 |
vary: Accept-Encoding |
x-fastly-request-id: 0c60d3e3b2fbc563e23e561512a2e9a2c5c287ae |
CF-Cache-Status: DYNAMIC |
Report-To: "endpoints":["url":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=60gHPFA99RsSzZG19YBrqbMwTvWLKWmzkoeLEFiQx0OGFAB0mFN%2F8I1xnNj2kCyY%2BudY%2Fs%2BsGmtrSI775zMyRgtZ6gI1S3yWSjClvTct7v6ewNH61rncIeOmfh911L%2BSwjTxHzQgfzfy9jOeMgs%3D"],"group":"cf-nel","max_age":604800 |
NEL: "success_fraction":0,"report_to":"cf-nel","max_age":604800 |
Server: cloudflare |
CF-RAY: 883a5bd6df98238f-SJC |
charset="utf-8"/ |
content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/ |
content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport"/ |
NAV shell Introduction Authentication Content-Type Users API Get User List Completed Challenges List Authored Challenges Code Challenges API Get Code Challenge Webhooks Structure Register your Webhook Code Challenges User Errors codewars.com github.com/codewars Introduction Codewars API v1 is minimal and inconsistent. It was never actively developed. API v2 is planned, but there’s no ETA at the moment. Authentication Not required. API v1 endpoints are all public. Content-Type API v1 endpoints responds with JSON ( application/json ). Users API Get User Returns a user information. curl https://www.codewars.com/api/v1/users/some_user Response { "username" : "some_user" , "name" : "Some Person" , "honor" : 544 , "clan" : "some clan" , "leaderboardPosition" : 134 , "skills" : [ "ruby" , "c#" , ".net" , "javascript" , "coffeescript" , "nodejs" , "rails" ], "ranks" : { "overall" : { "rank" : -3 , "name" : "3 kyu" , "color" : "blue" , "score" : 2116 }, "languages" : { "javascript" : { "rank" : -3 , "name" : "3 kyu" , "color" : "blue" , "score" : 1819 }, "ruby" : { "rank" : -4 , "name" : "4 kyu" , "color" : "blue" , "score" : 1005 }, "coffeescript" : { "rank" : -4 , "name" : "4 kyu" , "color" : "blue" , "score" : 870 } } }, "codeChallenges" : { "totalAuthored" : 3 , "totalCompleted" : 230 } } HTTP Request https://www.codewars.com/api/v1/users/{user} Path Parameters Parameter Description user Username or ID User Object Field Type Description username string Username of the user. name string Name of the user. honor number Total honor points earned by the user. clan string Name of the clan. leaderboardPosition number The user’s position on the overall leaderboard. skills string[] Array of skills entered by the user. ranks object Ranks object with overall and language ranks. codeChallenges object Object with fields totalAuthored and totalCompleted for the number of authored and completed kata respectively. Ranks Object Field Type Description overall object Overall rank. languages object Ranks for each language trained. Rank Object Field Type Description rank number Rank in integer. [-8, -1] maps to kyu, [1, 8] maps to dan. name string Either {-rank} kyu or {rank} dan . color string The color of the rank. Possible colors are white (7-8 kyu), yellow (5-6 kyu), blue (3-4 kyu), purple (1-2 kyu), black (1-4 dan), and red (5-8 dan). score number The total score earned. This is the number that determines the rank. List Completed Challenges Lists challenges completed by a user, 200 items per page. Use page parameter (zero based) to paginate. curl http://www.codewars.com/api/v1/users/some_user/code-challenges/completed?page = 0 Response { "totalPages" : 1 , "totalItems" : 1 , "data" : [ { "id" : "514b92a657cdc65150000006" , "name" : "Multiples of 3 and 5" , "slug" : "multiples-of-3-and-5" , "completedAt" : "2017-04-06T16:32:09Z" , "completedLanguages" : [ "javascript" , "coffeescript" , "ruby" , "javascript" , "ruby" , "javascript" , "ruby" , "coffeescript" , "javascript" , "ruby" , "coffeescript" ] } ] } HTTP Request https://www.codewars.com/api/v1/users/{user}/code-challenges/completed?page={page} Path Parameters Parameter Description user Username or ID Query Parameters Parameter Description Default page The page offset. Each page contains at most 200 items. 0 CompletedChallenge Object Field Type Description id string ID of the kata. name string Name of the kata. slug string Slug of the kata. completedAt string Date and time of the completion. completedLanguages string[] Array of languages a user completed in. List Authored Challenges List challenges authored by the user. curl http://www.codewars.com/api/v1/users/some_user/code-challenges/authored Response { "data" : [ { "id" : "5571d9fc11526780a000011a" , "name" : "The builder of things" , "description" : "For this kata you will be using some meta-programming ..." , "rank" : -3 , "rankName" : "3 kyu" , "tags" : [ "Algorithms" , "Metaprogramming" , "Programming Paradigms" , "Advanced Language Features" , "Fundamentals" , "Domain Specific Languages" , "Declarative Programming" ], "languages" : [ "ruby" , "javascript" , "python" , "coffeescript" ] }, { "id" : "51ba717bb08c1cd60f00002f" , "name" : "Range Extraction" , "description" : "A format for expressing an ordered list of integers ..." , "rank" : -4 , "rankName" : "4 kyu" , "tags" : [ "Algorithms" , "String Formatting" , "Formatting" , "Logic" , "Strings" ], "languages" : [ "javascript" , "coffeescript" , "ruby" , "go" , "python" , "java" , "haskell" , "csharp" , "cpp" ] } ] } HTTP Request https://www.codewars.com/api/v1/users/{user}/code-challenges/authored Path Parameters Parameter Description user Username or ID AuthoredChallenge Object Field Type Description id string ID of the kata. name string Name of the kata. description string Description of the kata in Markdown. rank number? Rank of the kata if approved. rankName string? Rank name of the kata if approved. tags string[] Array of tags associated with the kata. languages string[] Array of language names the kata is available in. Code Challenges API Get Code Challenge Return a code challenge information. curl https://www.codewars.com/api/v1/code-challenges/valid-braces Response { "id" : "5277c8a221e209d3f6000b56" , "name" : "Valid Braces" , "slug" : "valid-braces" , "url" : "http://www.codewars.com/kata/valid-braces" , "category" : "algorithms" , "description" : "Write a function called `validBraces` that takes a string ..." , "tags" : [ "Algorithms" , "Validation" , "Logic" , "Utilities" ], "languages" : [ "javascript" , "coffeescript" ], "rank" : { "id" : -4 , "name" : "4 kyu" , "color" : "blue" }, "createdBy" : { "username" : "xDranik" , "url" : "http://www.codewars.com/users/xDranik" }, "approvedBy" : { "username" : "xDranik" , "url" : "http://www.codewars.com/users/xDranik" }, "totalAttempts" : 4911 , "totalCompleted" : 919 , "totalStars" : 12 , "voteScore" : 512 , "publishedAt" : "2013-11-05T00:07:31Z" , "approvedAt" : "2013-12-20T14:53:06Z" } HTTP Request https://www.codewars.com/api/v1/code-challenges/{challenge} Path Parameters Parameter Description challenge ID or slug CodeChallenge Object Field Type Description id string ID of the kata. name string Name of the kata. slug string Slug of the kata. url string URL of the kata. category string Category of the kata. description string Description of the kata in Markdown. tags string[] Array of tags associated with the kata. languages string[] Array of language names the kata is available in. rank object? Object describing the rank of the kata if approved. createdBy object The author of the kata. publishedAt string Date and time when the kata was first published. approvedBy object? The approver of the kata. approvedAt string Date and time when the kata was approved. totalCompleted number Total number of completions. totalAttempts number Total number of attempts. totalStars number The number of bookmarks. voteScore number The sum of all votes casted. contributorsWanted boolean Whether to allow contributions. unresolved object Object with fields issues and suggestions for the number of unresolved issues and suggestions respectively. User Object Field Type Description username string Username of the user. url string URL of the user’s profile. Webhooks Webhooks allows you to receive notifications when events occur. Like API v1, webhooks feature was never actively developed and poorly documented. It’s not very usable at the moment. Structure Sample Event (Code Challenge Created) User-Agent: Codewars Hookbot Content-Type: application/json X-Webhook-Event: code_challenge X-Webhook-Secret: some-shared-secret { "action" : "created" , "code_challenge" : { "id" : "50654ddff44f800200000001" , "created_by_id" : "508f2708b3be0c0200000002" } } When an event occurs in the Codewars system, any relevant webhooks will be triggered to the specified URL. Typically, events are categorized into event and actions . Typically an event references what type of model (i.e....
Domain Name: CODEWARS.COM Registry Domain ID: 123721416_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.godaddy.com Registrar URL: http://www.godaddy.com Updated Date: 2023-11-03T04:23:03Z Creation Date: 2004-06-29T18:06:33Z Registry Expiry Date: 2025-06-29T18:06:33Z Registrar: GoDaddy.com, LLC Registrar IANA ID: 146 Registrar Abuse Contact Email: abuse@godaddy.com Registrar Abuse Contact Phone: 480-624-2505 Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited Name Server: ALLA.NS.CLOUDFLARE.COM Name Server: JAY.NS.CLOUDFLARE.COM DNSSEC: unsigned >>> Last update of whois database: 2024-05-17T19:53:50Z <<<