# Gorgia — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for home improvement and electronics products on gorgia.ge and retrieve detailed information like prices, specifications, and availability for items sold by this Georgian retailer. Easily browse thousands of products across categories to compare options and find what you need.

**Category:** E-commerce | **Website:** [gorgia.ge/](https://gorgia.ge/) | **Docs:** [parse.bot/marketplace/942dc464-2190-4ff3-97c3-e30723d7da9a/gorgia-ge-api](https://parse.bot/marketplace/942dc464-2190-4ff3-97c3-e30723d7da9a/gorgia-ge-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-gorgia-ge-api-942dc464/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full product details including title, SKU, price, availability, categories, features/specifications, and image. Requires the product's URL path which can be obtained from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_url` | string | Yes | Product page URL path (e.g. 'ka/teqnika/samzareulos-wvrili-teqnika/samzareulos-saswori/სამზარეულოს-სასწორი-kumtel-hks-11/'). Can be a full URL or relative path from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gorgia-ge-api-942dc464/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_url":"<string>"}'
```

### search_products

Search or browse products by query or category. Returns paginated product listings with price, availability, and image data. When category is provided without query, lists all products in that category. When query is provided, performs full-text search across product names, codes, and descriptions. Results are auto-iterated by page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category URL slug (e.g. 'teqnika', 'aveji', 'santeqnika', 'klimaturi-teqnika', 'mshenebloba', 'remonti', 'ganateba', 'bagi', 'sabavshvo', 'xelsawyoebi', 'ikeas-produqcia', 'sayofacxovrebo', 'cxovelebis-movla'). Used when query is omitted. |
| `items_per_page` | integer | No | Number of products per page. Supported values: 24, 48, 96, 192. |
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | No | Free-text search query matching product names, codes, and descriptions. When omitted, lists products from the specified category. |
| `sort_by` | string | No | Sort order for results. When omitted, uses category default sorting. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gorgia-ge-api-942dc464/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","items_per_page":"<integer>","page":"<integer>","query":"<string>","sort_by":"<string>"}'
```
