# Vecteezy — 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 millions of vector images on Vecteezy and retrieve detailed information including preview URLs and download links. Access metadata for vectors to integrate high-quality graphics into your projects and applications.

**Category:** Marketplaces | **Website:** [vecteezy.com/](https://vecteezy.com/) | **Docs:** [parse.bot/marketplace/5c6e6365-22f2-4963-8a97-597e7fdf75d5/vecteezy-com-api](https://parse.bot/marketplace/5c6e6365-22f2-4963-8a97-597e7fdf75d5/vecteezy-com-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-vecteezy-com-api-5c6e6365/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_vector_details

Get detailed metadata for a specific vector image by its numeric ID or full detail URL. Returns tags, author, license type, preview URL, and download link. The vector ID can be obtained from search_vectors results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `vector_id_or_url` | string | Yes | The numeric vector ID (e.g., '2476508') or the full detail URL (e.g., 'https://www.vecteezy.com/vector-art/2476508-sample-vector-title'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vecteezy-com-api-5c6e6365/get_vector_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"vector_id_or_url":"<string>"}'
```

### search_vectors

Search for vector images by keyword or browse a default category. Returns paginated results with thumbnails and metadata. If query is omitted, browses the backgrounds category. Each result includes a numeric ID usable with get_vector_details for full metadata.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `license_type` | string | No | Filter by license type. Accepted values: 'free', 'pro'. |
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | No | Search keyword (e.g., 'flowers', 'winter holiday'). If omitted, browses the backgrounds category. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vecteezy-com-api-5c6e6365/search_vectors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"license_type":"<string>","page":"<integer>","query":"<string>"}'
```
