# Implementation Guidelines

## Merchant Monitoring API Integration Guide

### Overview

The Merchant Monitoring API enables you to monitor merchant web presence and receive real-time notifications about domain trustworthiness. This guide covers everything you need to integrate the API into your application.

#### Base URLs

| Environment | URL                                |
| ----------- | ---------------------------------- |
| UAT         | `https://uat-monitor.payshield.ai` |
| Production  | `https://monitor.payshield.ai`     |

#### API Version

All endpoints are versioned under `/api/v1/`.

***

### Authentication

The API uses JWT (JSON Web Token) bearer authentication. All protected endpoints require the `Authorization` header.

**Using the Access Token**

Include the token in all authenticated requests:

```bash
curl -X GET {baseurl}/api/v1/domains \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."
```


---

# Agent Instructions: 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:

```
GET https://docs.payshield.ai/merchant-monitoring-api/implementation-guidelines.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
