All Projects → ziishaned → Rest Api Example

ziishaned / Rest Api Example

RESTful Blog API in Lumen 5.2

Projects that are alternatives of or similar to Rest Api Example

Ebook Building An Api Backend With Microprofile
Building an API Backend with MicroProfile
Stars: ✭ 53 (+0%)
Mutual labels:  api, restful-api
Jianshu
仿简书nx+nodejs+nestjs6+express+mongodb+angular8+爬虫
Stars: ✭ 296 (+458.49%)
Mutual labels:  api, restful-api
Clevergo
👅 CleverGo is a lightweight, feature rich and high performance HTTP router for Go.
Stars: ✭ 246 (+364.15%)
Mutual labels:  api, restful-api
Hitchhiker
a Restful Api test tool
Stars: ✭ 2,175 (+4003.77%)
Mutual labels:  api, restful-api
Ngx Restangular
Restangular for Angular 2 and higher versions
Stars: ✭ 787 (+1384.91%)
Mutual labels:  api, restful-api
Lumen Api Starter
Lumen 8 基础上扩展出的API 启动项目,精心设计的目录结构,规范统一的响应数据格式,Repository 模式架构的最佳实践。
Stars: ✭ 197 (+271.7%)
Mutual labels:  api, restful-api
Pfsense fauxapi
REST based API interface for pfSense 2.3.x and 2.4.x to facilitate devops
Stars: ✭ 288 (+443.4%)
Mutual labels:  api, restful-api
Restful Api With Laravel Definitive Guide
Repository with the base code for the course "RESTful API with Laravel - Definitive-Guide"
Stars: ✭ 156 (+194.34%)
Mutual labels:  api, restful-api
Apidoc
RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python、Typescript、Kotlin 和 Ruby 等大部分语言。
Stars: ✭ 785 (+1381.13%)
Mutual labels:  api, restful-api
Koa2 Api Scaffold
一个基于Koa2的轻量级RESTful API Server脚手架。
Stars: ✭ 694 (+1209.43%)
Mutual labels:  api, restful-api
Graphql2rest
GraphQL to REST converter: automatically generate a RESTful API from your existing GraphQL API
Stars: ✭ 181 (+241.51%)
Mutual labels:  api, restful-api
Tinyme
A tiny php framework based on flight and medoo with restful api service
Stars: ✭ 28 (-47.17%)
Mutual labels:  api, restful-api
Proteus
Lean, mean, and incredibly fast JVM framework for web and microservice development.
Stars: ✭ 178 (+235.85%)
Mutual labels:  api, restful-api
Route
Route - Fast, flexible routing for PHP, enabling you to quickly and easily build RESTful web applications.
Stars: ✭ 200 (+277.36%)
Mutual labels:  api, restful-api
Usaspending Api
Server application to serve U.S. federal spending data via a RESTful API
Stars: ✭ 166 (+213.21%)
Mutual labels:  api, restful-api
Http Fake Backend
Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 253 (+377.36%)
Mutual labels:  api, restful-api
Saas Boilerplate
SaaS boilerplate built in Laravel, Bootstrap 4 and VueJs.
Stars: ✭ 152 (+186.79%)
Mutual labels:  api, restful-api
Appkernel
API development made easy: a smart Python 3 API framework
Stars: ✭ 152 (+186.79%)
Mutual labels:  api, restful-api
Datafire
A framework for building integrations and APIs
Stars: ✭ 487 (+818.87%)
Mutual labels:  api, restful-api
E Commerce 2 django
Guest register, user register, user login, user logout, account home page, product view history, change password, reset password, change name, send activation email when register, resend activation email, add shipping address, add billing address, add nickname to the addresses, edit shipping address, edit billing address, view list of your addresses, reuse shipping addresses when order products, reuse billing addresses when ordeer products, show sales analytics if staff or admin only using -chart.js-, get analytics data with Ajax, receive marketing email, change if user will receive marketing email or not by admin, send contact message with Ajax, products list, product detail, download product detail as a PDF file, download digital product files -if the user purchased that digital product only-, orders list, list of digital products files, order detail, download order detail as a PDF file, verify order ownership with Ajax -to secure order detail page-, show cart products, add or remove product from cart, checkout page, thanks page when order placed successfully, add or reuse payment method, add or reuse payment method with Ajax, search products by title, search products by description, search products by price, search products by tag title, write tags for products -by admin only-, auto fill contact email, full name if user logged in.
Stars: ✭ 20 (-62.26%)
Mutual labels:  api, restful-api

😐 RESTful API

An example RESTful API built on top of Lumen 5.2.

Features

  • RESTful routing
  • Models with proper relationships
  • Controllers/Models etc with proper separation of concerns
  • JWT Authentication
  • RESTful errors

Routes List:

Comments

Method URI Action
POST comments App\Http\Controllers\[email protected]
GET/HEAD comments App\Http\Controllers\[email protected]
GET/HEAD comments/{id} App\Http\Controllers\[email protected]
DELETE comments/{id} App\Http\Controllers\[email protected]
PUT comments/{id} App\Http\Controllers\[email protected]

Posts

Method URI Action
POST posts App\Http\Controllers\[email protected]
GET/HEAD posts App\Http\Controllers\[email protected]
PUT posts/{id} App\Http\Controllers\[email protected]
GET/HEAD posts/{id} App\Http\Controllers\[email protected]
DELETE posts/{id} App\Http\Controllers\[email protected]

Users

Method URI Action
GET/HEAD users App\Http\Controllers\[email protected]
POST users App\Http\Controllers\[email protected]
PUT users/{id} App\Http\Controllers\[email protected]
GET/HEAD users/{id} App\Http\Controllers\[email protected]
DELETE users/{id} App\Http\Controllers\[email protected]
GET/HEAD users/{id}/comments App\Http\Controllers\[email protected]
GET/HEAD users/{id}/comments/{commentId} App\Http\Controllers\[email protected]
GET/HEAD users/{id}/posts App\Http\Controllers\[email protected]
GET/HEAD users/{id}/posts/{postId} App\Http\Controllers\[email protected]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].