Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/concepts/glossary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Glossary of API Terms

This document contains basic terms used in API development:

- **API**: Application Programming Interface; allows software systems to talk to each other.
- **Endpoint**: A specific URL where an API can be accessed.
- **REST**: A style of API based on HTTP methods like GET, POST, PUT, DELETE.
- **JSON**: Format used to send and receive data in APIs.
- **Status Codes**: HTTP codes that indicate success (200), error (400, 500), etc.
- **Bearer Token**: Used for secure API authentication.
- **Rate Limiting**: Restriction on the number of API calls per time window.