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

# List Advertisers

> Read a list of Advertisers associated with your Reseller account. You can also view this on the Reseller dashboard's Advertisers page in the admin portal.

### Query Parameters

<ParamField query="limit" type="string" default="10">
  The maximum number of advertisers to return.  Must be between 1 and 20.
</ParamField>

<ParamField query="page" type="string" default="1">
  The page number of the results.
</ParamField>

### Path Parameters

<ParamField path="platformID" type="number" required={true}>
  The platform ID.
</ParamField>

### Response

<ResponseField name="id" type="number">
  The advertiser ID.
</ResponseField>

<ResponseField name="name" type="string">
  The name of the advertiser.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  [
      {
          "id": 1,
          "name": "Advertiser 1"
      },
      {
          "id": 2,
          "name": "Advertiser 2"
      }
  ]
  ```

  ```json 400 theme={null}
  {
      "error": "Page size must be between 1 and 20"
  }
  ```

  ```json 500 theme={null}
  {
      "error": "Internal server error"
  }
  ```
</ResponseExample>
