{"id":20669265,"url":"https://github.com/moonman369/go-crud-api","last_synced_at":"2026-06-10T07:31:07.728Z","repository":{"id":181839680,"uuid":"667424619","full_name":"moonman369/Go-CRUD-API","owner":"moonman369","description":"This a Go Based CRUD-API Endpoint","archived":false,"fork":false,"pushed_at":"2023-07-18T08:45:22.000Z","size":7937,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-17T16:24:40.369Z","etag":null,"topics":["ba","backend","clevercloud","crud-api","go","gomodule","web-server"],"latest_commit_sha":null,"homepage":"https://go-crud-api.cleverapps.io/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moonman369.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}},"created_at":"2023-07-17T13:25:06.000Z","updated_at":"2023-07-18T08:40:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"e6264d63-5d97-4305-a1e4-cb00cd6068d5","html_url":"https://github.com/moonman369/Go-CRUD-API","commit_stats":null,"previous_names":["moonman369/go-crud-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/moonman369/Go-CRUD-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moonman369%2FGo-CRUD-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moonman369%2FGo-CRUD-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moonman369%2FGo-CRUD-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moonman369%2FGo-CRUD-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moonman369","download_url":"https://codeload.github.com/moonman369/Go-CRUD-API/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moonman369%2FGo-CRUD-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34142637,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"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":["ba","backend","clevercloud","crud-api","go","gomodule","web-server"],"created_at":"2024-11-16T20:13:39.427Z","updated_at":"2026-06-10T07:31:07.666Z","avatar_url":"https://github.com/moonman369.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"**This is a Go based CRUD API to store and process movies**\n\n# API Documentation\n\n### 1. GET ALL MOVIES\n- Base URL: `https://go-crud-api.cleverapps.io`\n- Endpoint: `/movies`\n- Method: `GET`\n- Example Response:\n  ```\n  200 OK\n  [\n    {\n        \"id\": \"2\",\n        \"isbn\": \"831479\",\n        \"title\": \"Inception\",\n        \"director\": {\n            \"firstName\": \"Christopher\",\n            \"lastName\": \"Nolan\"\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"isbn\": \"15740661\",\n        \"title\": \"Avatar\",\n        \"director\": {\n            \"firstName\": \"James\",\n            \"lastName\": \"Cameron\"\n        }\n    }\n  ]\n  ```\n\u003cbr\u003e\n  \n### 2. GET MOVIE BY ID\n- Base URL: `https://go-crud-api.cleverapps.io`\n- Endpoint: `/movies/[id: numeric string]`\n- Method: `GET`\n- Example Request: `/movies/2`\n- Example Successful Response:\n  ```\n  200 OK\n  {\n    \"id\": \"2\",\n    \"isbn\": \"831479\",\n    \"title\": \"Inception\",\n    \"director\": {\n        \"firstName\": \"Christopher\",\n        \"lastName\": \"Nolan\"\n    }\n  }\n  ```\n- Example Unsuccessful Response: `404 NOT FOUND`\n\u003cbr\u003e\n\n\n\n### 3. CREATE MOVIE\n- Base URL: `https://go-crud-api.cleverapps.io`\n- Endpoint: `/movies`\n- Method: `POST`\n- Example Request Body:\n  ```\n  {\n    \"title\": \"movie_name\",\n    \"director\": {\n        \"firstName\": \"director_first_name\",\n        \"lastName\": \"director_last_name\"\n    }\n  }\n  ```\n- Example Successful Response:\n  ```\n  200 OK\n  {\n    \"id\": \"3\", // plain counter\n    \"isbn\": \"831479\", //random\n    \"title\": \"movie_name\",\n    \"director\": {\n        \"firstName\": \"director_first_name\",\n        \"lastName\": \"director_last_name\"\n    }\n  }\n  ```\n\u003cbr\u003e\n\n\n\n### 4. UPDATE MOVIE\n- Base URL: `https://go-crud-api.cleverapps.io`\n- Endpoint: `/movies/[id: numeric string]`\n- Method: `PUT`\n- Exmaple Request Query: `/movies/4`\n- Example Request Body:\n  ```\n  {\n    \"title\": \"updated_movie_name\",\n    \"director\": {\n        \"firstName\": \"updated_director_first_name\",\n        \"lastName\": \"updated_director_last_name\"\n    }\n  }\n  ```\n- Example Successful Response:\n  ```\n  200 OK\n  {\n    \"id\": \"4\", // unchanged\n    \"isbn\": \"831479\", // unchanged\n    \"title\": \"updated_movie_name\",\n    \"director\": {\n        \"firstName\": \"updated_director_first_name\",\n        \"lastName\": \"updated_director_last_name\"\n    }\n  }\n  ```\n- Example Unsuccessful Response: `404 NOT FOUND`\n\u003cbr\u003e\n\n\n\n### 5. DELETE MOVIE\n- Base URL: `https://go-crud-api.cleverapps.io`\n- Endpoint: `/movies/[id: numeric string]`\n- Method: `DELETE`\n- Exmaple Request Query: `/movies/4`\n- Example Successful Response: `200 OK`\n- Example Unsuccessful Response: `404 NOT FOUND`\n\u003cbr\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoonman369%2Fgo-crud-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoonman369%2Fgo-crud-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoonman369%2Fgo-crud-api/lists"}