> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nativeport.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nativeport.ai/_mcp/server.

# Relay an Apify POST

POST https://api.nativeport.ai/apify/{path}
Content-Type: application/json

Hands the call to `https://api.apify.com/{path}`, rewriting `Authorization` to the secret
Apify token; a client-sent `token` query param is discarded. This is how actors and tasks
run through the run-sync endpoints.


Reference: https://docs.nativeport.ai/api-reference/api-reference/apify/post

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: gateway
  version: 1.0.0
paths:
  /apify/{path}:
    post:
      operationId: post
      summary: Relay an Apify POST
      description: >
        Hands the call to `https://api.apify.com/{path}`, rewriting
        `Authorization` to the secret

        Apify token; a client-sent `token` query param is discarded. This is how
        actors and tasks

        run through the run-sync endpoints.
      tags:
        - apify
      parameters:
        - name: path
          in: path
          description: >
            The path to call on the Apify API, `/` segments included — all of it
            after `/apify/` is

            passed to `https://api.apify.com/` when the allowlist admits it.
            Only run-sync actions get

            in, e.g. `v2/acts/{actorId}/run-sync-get-dataset-items` or

            `v2/actor-tasks/{actorTaskId}/run-sync`. `{actorId}` must be one
            tilde-form segment

            (e.g. `apify~web-scraper`).
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: >
            Your per-client bearer token — the API key the gateway issued to
            you. Present it in

            `Authorization: Bearer <token>` form. A token that is missing,
            unknown, or revoked draws a

            `401`. Before the call is sent upstream the token is removed
            (stripped, or swapped for the

            upstream's own credential); it never makes it past the gateway.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: >
            Whatever the upstream answered, relayed as-is (status, headers,
            body). Rendered here as

            JSON; the true shape is the upstream provider's to define.
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  description: Any type
        '401':
          description: >
            The bearer token was missing, unknown, or revoked. The reply body is
            the JSON `{ "error": "Unauthorized." }`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: >
            No route matched the path, or the matched route disallows that
            method (an unlisted

            `/serper/<endpoint>`, for instance).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties:
                description: Any type
servers:
  - url: https://api.nativeport.ai
    description: NativePort production
  - url: http://localhost:8787
    description: Local development (wrangler dev)
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Explanatory message meant for humans.
      required:
        - error
      title: Error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >
        Your per-client bearer token — the API key the gateway issued to you.
        Present it in

        `Authorization: Bearer <token>` form. A token that is missing, unknown,
        or revoked draws a

        `401`. Before the call is sent upstream the token is removed (stripped,
        or swapped for the

        upstream's own credential); it never makes it past the gateway.

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "organic": [
    {
      "link": "https://www.apple.com/",
      "position": 1,
      "title": "Apple"
    }
  ],
  "searchParameters": {
    "q": "apple inc",
    "type": "search"
  }
}
```

**SDK Code**

```python Serper /search (truncated)
import requests

url = "https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items"

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript Serper /search (truncated)
const url = 'https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Serper /search (truncated)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Serper /search (truncated)
require 'uri'
require 'net/http'

url = URI("https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java Serper /search (truncated)
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php Serper /search (truncated)
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Serper /search (truncated)
using RestSharp;

var client = new RestClient("https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Serper /search (truncated)
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.nativeport.ai/apify/v2%2Facts%2Fapify~website-content-crawler%2Frun-sync-get-dataset-items")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```