# Jina Search Foundation API — Orthogonal API

> Pay-per-use API on Orthogonal. Each call is billed to your Orthogonal balance.
> Base API: `https://api.orth.sh/v1/run` · [llms.txt](https://orthogonal.com/llms.txt) · [browse all APIs](https://orthogonal.com/discover)

Your Search Foundation, Supercharged. Search AI for multilingual and multimodal data.

**Verified:** no

## Access

**Run API:** `POST https://api.orth.sh/v1/run`
**Auth:** `Authorization: Bearer $ORTHOGONAL_API_KEY`
Get an API key at https://orthogonal.com/dashboard/settings/api-keys

Every call goes through the unified Run API: send the API `slug`, the endpoint `path`, and the `query`/`body` parameters. The response is `{ "success": true, "price": "<usd>", "data": { ... } }`.

## Endpoints

### Search

Use s.jina.ai to search the web and get SERP

`GET /`

**Estimated cost:** $0.01

**Docs:** https://s.jina.ai/docs

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `q` | string | No | Search query |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"jina-s","path":"/","method":"GET","query":{"q":"<string>"}}'
```

---

Full details and an interactive quickstart: https://orthogonal.com/discover/jina-s
