# Artstation — 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.

> Browse trending and curated artwork projects from ArtStation to discover the latest creative work, view full project details, and explore community-curated collections. Search and retrieve specific projects to find inspiration, review artist portfolios, and stay updated on what's popular in the art community.

**Category:** Social Media | **Website:** [www.artstation.com/](https://www.artstation.com/) | **Docs:** [parse.bot/marketplace/4464a248-cc18-434b-ad26-f0f0d1150c17/artstation-com-api](https://parse.bot/marketplace/4464a248-cc18-434b-ad26-f0f0d1150c17/artstation-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-artstation-com-api-4464a248/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_project

Get full details of a specific ArtStation project by its hash_id (from list_projects results or artwork URLs). Returns title, description, full-resolution image assets, author profile, tags, categories, software used, publication timestamps, and engagement counts. One round-trip per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hash_id` | string | Yes | The project's unique hash identifier (e.g. '31dG8g'), obtainable from list_projects results or ArtStation artwork URLs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-artstation-com-api-4464a248/get_project \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hash_id":"<string>"}'
```

### list_projects

List public artwork projects from ArtStation's explore feed. Supports sorting by latest, trending, or community-curated. Returns paginated results with project summaries including title, cover image, and author info. The upstream API requires per_page >= 10.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (starts at 1). |
| `per_page` | integer | No | Number of projects per page (minimum 10, maximum 100). |
| `sort_by` | string | No | Sort order for the project feed. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-artstation-com-api-4464a248/list_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","sort_by":"<string>"}'
```
