Skip to content
Victor Westerlund edited this page Nov 17, 2022 · 6 revisions

📖 Welcome to the Reflect Wiki

Here are some guides and docs on how to use the Reflect API framework to build REST endpoints for your project.


Read the Get Started guide for how to create your first endpoint using Reflect!


The OPTIONS method

You can always check which methods of an endpoint you're allowed to call by sending an OPTIONS request. If no API key is provided, the default HTTP_ANYONE_KEY will be used to check methods available to the public (anonymous requests).

$ curl https://example.com/ping -X OPTIONS

# Response is JSON array of allowed methods: ["GET,"POST"]
Clone this wiki locally