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

# RapidAPI: List Listings

> Discover which RapidAPI listings Deepline can call, their hosts, and their documented endpoints. Includes inputs, outputs, SDK V2 examples, and Deepline cost.

Discover which RapidAPI listings Deepline can call, their hosts, and their documented endpoints.

<Info>
  Tool ID: `rapidapi_list_listings`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'rapidapi_list_listings',
  {
    "search": "software companies hiring engineers"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute rapidapi_list_listings --input '{
  "search": "software companies hiring engineers"
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get rapidapi_list_listings --json` for the complete live contract.

## Input reference

List the RapidAPI listings Deepline can call.

| Name             | Type     | Required | Default | Details                                                                              |
| ---------------- | -------- | -------- | ------- | ------------------------------------------------------------------------------------ |
| `payload.search` | `string` | No       | —       | Case-insensitive filter over listing labels, hosts, vendors, and endpoint summaries. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "List the RapidAPI listings Deepline can call.",
    "properties": {
      "search": {
        "type": "string",
        "description": "Case-insensitive filter over listing labels, hosts, vendors, and endpoint summaries."
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                                            | Type     | Required | Default | Details |
| ----------------------------------------------- | -------- | -------- | ------- | ------- |
| `result.listings`                               | `array`  | Yes      | —       | —       |
| `result.listings[].slug`                        | `string` | Yes      | —       | —       |
| `result.listings[].host`                        | `string` | Yes      | —       | —       |
| `result.listings[].label`                       | `string` | Yes      | —       | —       |
| `result.listings[].vendor`                      | `string` | Yes      | —       | —       |
| `result.listings[].description`                 | `string` | Yes      | —       | —       |
| `result.listings[].listing_url`                 | `string` | Yes      | —       | —       |
| `result.listings[].endpoints`                   | `array`  | Yes      | —       | —       |
| `result.listings[].endpoints[].operation`       | `string` | Yes      | —       | —       |
| `result.listings[].endpoints[].method`          | `string` | Yes      | —       | —       |
| `result.listings[].endpoints[].path`            | `string` | Yes      | —       | —       |
| `result.listings[].endpoints[].summary`         | `string` | Yes      | —       | —       |
| `result.listings[].endpoints[].required_inputs` | `array`  | Yes      | —       | —       |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "listings": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "slug": {
              "type": "string"
            },
            "host": {
              "type": "string"
            },
            "label": {
              "type": "string"
            },
            "vendor": {
              "type": "string"
            },
            "description": {
              "type": "string"
            },
            "listing_url": {
              "type": "string"
            },
            "endpoints": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "operation": {
                    "type": "string"
                  },
                  "method": {
                    "type": "string"
                  },
                  "path": {
                    "type": "string"
                  },
                  "summary": {
                    "type": "string"
                  },
                  "required_inputs": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  }
                },
                "required": [
                  "operation",
                  "method",
                  "path",
                  "summary",
                  "required_inputs"
                ],
                "additionalProperties": false
              }
            }
          },
          "required": [
            "slug",
            "host",
            "label",
            "vendor",
            "description",
            "listing_url",
            "endpoints"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "listings"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [RapidAPI provider guide](/docs/providers/rapidapi/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
