# TrustedShops Shop Profile

Fetch a single TrustedShops shop profile by TSID and return merchant-level profile data as structured JSON. The response is useful when you need to enrich a known TrustedShops ID with the shop URL, display name, language, target market, and profile metadata before joining it to reviews or search results.

Start with [TrustedShops Search](/docs/trustedshops-api/trustedshops_search) if you need to discover the TSID from a shop name or domain. Use [TrustedShops Reviews](/docs/trustedshops-api/trustedshops_reviews) for review-level records from the same TSID, or [TrustedShops Markets](/docs/trustedshops-api/trustedshops_markets) to validate the market codes used across the TrustedShops docs cluster.

- **Documentation:** [https://scrappa.co/docs/trustedshops-api/trustedshops_shop](https://scrappa.co/docs/trustedshops-api/trustedshops_shop)
- **API group:** TrustedShops API
- **Endpoint:** `GET https://scrappa.co/api/trustedshops/shop/{tsid}`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `tsid` | string | Yes | TrustedShops ID |
| `tsid` | string | No | Trusted Shops ID (33 uppercase alphanumeric characters). |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/trustedshops/shop/{tsid}?tsid=X123"
```

## Example response

```json
{
    "shop": []
}
```

## Frequently asked questions

### What is a TrustedShops TSID?

A TSID is the TrustedShops shop identifier used to fetch a specific merchant profile or reviews. You can usually discover it from TrustedShops Search results or from a TrustedShops profile URL.

### What data does the Shop Profile endpoint return?

The endpoint returns profile-level shop data such as TSID, shop URL, display name, language code, target market, and available TrustedShops profile metadata.

### How is Shop Profile different from Reviews?

Shop Profile is for merchant-level enrichment. Reviews is for individual review records, ratings, comments, dates, and review metadata for the same shop TSID.

## Related endpoints

- [TrustedShops Search](https://scrappa.co/docs/trustedshops-api/trustedshops_search)
- [TrustedShops Reviews](https://scrappa.co/docs/trustedshops-api/trustedshops_reviews)
- [TrustedShops Markets](https://scrappa.co/docs/trustedshops-api/trustedshops_markets)
- [TrustedShops Category Shops](https://scrappa.co/docs/trustedshops-api/trustedshops_category_shops)

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
