Quotes API Documentation

Base URL: https://motivational-spark-api.vercel.app/api/

GET /quotes

Retrieve all quotes.

Try It

GET /quotes/random

Retrieve a single random quote.

Try It

GET /quotes/random/<int:number>

Retrieve N random quotes.

Example: /quotes/random/3 Try It

GET /quotes/<int:index>

Retrieve a quote by its index (1-based).

Example: /quotes/2 Try It

GET /owner

Get API owner information.

Try It