> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hasmcp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How do I get the details of a specific provider?

> Reference documentation on how to fetch the complete configuration details of an individual API provider using the HasMCP manager.

# Getting Specific Provider Details

## Using HasMCP UI

<img src="https://mintcdn.com/hasmcp/IeVTjQlEDEFCokWv/images/kb/provider-details.png?fit=max&auto=format&n=IeVTjQlEDEFCokWv&q=85&s=bf2090936eded7e442f209f9657185fb" alt="Provider Details Page" width="2560" height="1440" data-path="images/kb/provider-details.png" />

To view all the information about a specific provider in the dashboard:

1. Navigate to the **Providers** menu.
2. Click on the name or the card of the Provider you want to inspect.
3. You will be taken to a dedicated page outlining its endpoints, active tool mappings, and OAuth2 configurations.

## Using REST API

To fetch the full configuration of a specific API provider programmatically, you must make a `GET` request using the provider's unique 11-character identifier.

### The Endpoint

**`GET /providers/{id}`**

### Example Request

```bash theme={null}
curl -X GET https://app.hasmcp.com/api/v1/providers/kSuB9Gf6aD4 \
 -H "Authorization: Bearer YOUR_TOKEN"
```

### The Response payload

The endpoint returns a `200 OK` status and provides a [`GetProviderResponse`](/api-reference/providers/get-provider) object. The response features a fully populated `Provider` schema containing:

* The base routing URL and Name.
* Bound resource mappings and prompts.
* All mapped `tools` natively associated with the provider, which can subsequently be attached to servers.
