> For the complete documentation index, see [llms.txt](https://www.pranaypourkar.co.in/the-programmers-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pranaypourkar.co.in/the-programmers-guide/api/api-basics/terminology.md).

# Terminology

<table data-header-hidden data-full-width="true"><thead><tr><th width="266.09283447265625"></th><th></th></tr></thead><tbody><tr><td><strong>Term</strong></td><td><strong>Explanation</strong></td></tr><tr><td><strong>API</strong> (Application Programming Interface)</td><td>A set of rules that allows two software systems to communicate. It defines how requests should be made and what responses to expect.</td></tr><tr><td><strong>Client</strong></td><td>The system (like a browser or mobile app) that sends requests to an API.</td></tr><tr><td><strong>Server</strong></td><td>The system that receives API requests, processes them, and returns responses.</td></tr><tr><td><strong>Endpoint</strong></td><td>A specific URL or route in an API that represents an action or data source. Example: <code>/users</code> or <code>/products/123</code>.</td></tr><tr><td><strong>Request</strong></td><td>The message sent by the client to the API, asking for data or action.</td></tr><tr><td><strong>Response</strong></td><td>The message sent by the API back to the client after processing a request.</td></tr><tr><td><strong>HTTP Method (Verb)</strong></td><td>The action the client wants to perform. Common ones: <code>GET</code> (read), <code>POST</code> (create), <code>PUT</code> (update), <code>DELETE</code> (remove).</td></tr><tr><td><strong>Resource</strong></td><td>A unit of data in an API. In REST APIs, resources are typically represented as nouns in the URL, such as <code>users</code>, <code>orders</code>, or <code>products</code>.</td></tr><tr><td><strong>Path Parameter</strong></td><td>A variable in the URL path used to identify a specific resource. Example: <code>/users/{id}</code>.</td></tr><tr><td><strong>Query Parameter</strong></td><td>A key-value pair added to the URL to filter or refine the request. Example: <code>/users?active=true</code>.</td></tr><tr><td><strong>Header</strong></td><td>Key-value pairs sent along with the request or response to provide metadata like content type or authorization.</td></tr><tr><td><strong>Body</strong></td><td>The main content or data sent with a request (especially in <code>POST</code>, <code>PUT</code>) or returned in a response.</td></tr><tr><td><strong>Status Code</strong></td><td>A numeric code in the response that tells whether the request succeeded or failed. Example: <code>200 OK</code>, <code>404 Not Found</code>.</td></tr><tr><td><strong>Authentication</strong></td><td>The process of verifying the identity of the client making the API call.</td></tr><tr><td><strong>API Consumer</strong></td><td>The system or developer that uses the API to perform operations or access data.</td></tr><tr><td><strong>API Provider</strong></td><td>The system or service that exposes the API and responds to incoming requests.</td></tr><tr><td><strong>Statelessness</strong></td><td>A principle where each API request is independent and doesn't rely on past requests. Common in REST APIs.</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://www.pranaypourkar.co.in/the-programmers-guide/api/api-basics/terminology.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
