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

# Company Ads

> Collect public ads for a Facebook Ad Library page ID.

# Company Ads

Collect public ads associated with one page ID returned by Company Search.

## Request Example

```json theme={"system"}
{
  "page_id": "51212153078",
  "results_limit": 100,
  "country": "US",
  "status": "ACTIVE",
  "media_type": "ALL"
}
```

## Use with MCP

| Interface      | Value                                                             |
| -------------- | ----------------------------------------------------------------- |
| REST           | `POST /v1/facebook-ad-library/company-ads`                        |
| Compact MCP    | `socq_execute` with `endpoint: "facebook-ad-library/company-ads"` |
| Typed MCP      | `socq_facebook_ad_library_company_ads`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=facebook_ad_library_company_ads`   |
| CLI            | `socq facebook-ad-library company-ads`                            |

Use the JSON request body above as the nested `input` object for `socq_execute`, or pass the same fields directly to the typed tool. Typed tools also accept `_wait_seconds`, `_result_limit`, and `_idempotency_key`.

<Info>
  A successful collection returns a `task_id`. Continue with `socq_get_task` until the task succeeds, then read normalized records from `results.items`.
</Info>

See [MCP quickstart](/integrations/mcp) for the complete submission and polling flow.

The final result can contain fewer records than `results_limit` when no additional page is available or duplicate ad IDs are removed.

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "data": {
    "task_id": "A1B2C3D4E5F6G7H8",
    "status": "succeeded",
    "public_id": "facebook-ad-library/company-ads",
    "result_count": 1,
    "credits_amount": 0.5,
    "results": {
      "limit": 50,
      "next_cursor": null,
      "has_more": false,
      "items": [{
        "id": "1162496978867592",
        "platform": "facebook-ad-library",
        "resource": "company-ads",
        "type": "ad",
        "url": "https://www.facebook.com/ads/library/?id=1162496978867592",
        "name": "New collection",
        "text": "Explore the latest collection.",
        "author": {"id": "51212153078", "username": null, "name": "Example Sports", "url": null},
        "metrics": {"page_likes_count": 1200000, "reach": null},
        "media": [{"type": "image", "url": "https://example.com/ad.jpg"}],
        "created_at": "2026-07-10T00:00:00",
        "collected_at": "2026-07-18T10:30:00",
        "extra": {"input_page_id": "51212153078", "is_active": true, "cta_text": "Shop now"}
      }]
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/facebook-ad-library/company-ads
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-063d1c96173a
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/facebook-ad-library/company-ads:
    post:
      tags:
        - facebook-ad-library
      summary: Facebook Ad Library Company Ads API
      description: Facebook Ad Library Company Ads API
      operationId: socq_facebook_ad_library_company_ads
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                country:
                  type: string
                  minLength: 1
                end_date:
                  type: string
                  minLength: 1
                language:
                  type: string
                  minLength: 1
                media_type:
                  type: string
                  minLength: 1
                page_id:
                  type: string
                  minLength: 1
                  description: A public page identifier.
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 2000
                sort_by:
                  type: string
                  minLength: 1
                start_date:
                  type: string
                  minLength: 1
                status:
                  type: string
                  minLength: 1
              required:
                - page_id
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
            idempotent_replay:
              type: boolean
          required:
            - task_id
            - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````