# Quickstart

Four steps from zero to your first dark web posts. You need an API token with Cyber API permission.

## 1. Get your token

Find your API `token` in your Webz.io dashboard. Your account must have Cyber API access - without it, requests return `401`.

## 2. Run a query

`GET`

```bash
https://api.webz.io/cyberFilter?token=YOUR_TOKEN&q=bitcoin extended.network:tor
```

In real requests, URL-encode the `q` value.

## 3. Read the response

The JSON response contains a `cyberDocs` array plus paging fields:

```json
{
  "cyberDocs": [ ... ],
  "totalResults": 4210,
  "moreResultsAvailable": 4200,
  "next": "/cyberFilter?token=YOUR_TOKEN&format=json&ts=1751630400000&q=...",
  "requestsLeft": 989,
  "warnings": null
}
```

## 4. Get the next page

Append the `next` value to `https://api.webz.io` and call it again. Repeat until `moreResultsAvailable` reaches `0`. See [Pagination](cyber-api-pagination).

That's it - you are up and running. Next, sharpen your query with [Query Syntax](cyber-api-query-syntax) and [Filters](cyber-api-filters).

> [!NOTE]
> Responses return up to **10** posts each - pagination matters more here than on other Webz.io APIs. See [Request Parameters](cyber-api-parameters).
