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

# Quickstart

> Make your first authenticated search request in minutes.

## 1. Sign in to the dashboard

Open the [Nephia dashboard](https://app.nephia.cc) and sign in with Google or a sign-in link. Your **Account** is provisioned automatically on first sign-in.

## 2. Create an API key

Go to **API Keys** and create a key. Copy it immediately — it is shown only once.

## 3. Search listings

### Node.js SDK

```bash theme={null}
npm install nephia
```

```ts theme={null}
import { Nephia } from "nephia";

const client = new Nephia({ apiKey: "YOUR_API_KEY" });

const results = await client.vinted.search({ market: "fr", query: "nike" });
console.log(results);

const balance = await client.account.credits();
console.log(balance);
```

See the [Node.js SDK](/sdk) guide for watches, webhooks, and all namespaces.

### curl

```bash theme={null}
curl "https://api.nephia.cc/v1/vinted/search?market=fr&query=nike" \
  -H "x-api-key: YOUR_API_KEY"
```

`market` is optional and defaults to `fr`. See [Vinted markets](/sources/vinted#enabled-markets) for the full allowlist.

```bash theme={null}
curl https://api.nephia.cc/v1/account/credits \
  -H "x-api-key: YOUR_API_KEY"
```

## Next steps

* [SDK (Node.js)](/sdk) — typed client
* [Authentication](/authentication) — key management and headers
* [Credits](/credits) — per-endpoint costs
* [Sources](/sources/vinted) — market and filter details
* [Watches](/watches) — subscribe to changes
* [API Reference](/api-reference/overview) — full endpoint list
