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

# List campaign opportunities

> Returns backlink opportunities discovered for a campaign.



## OpenAPI

````yaml /api-reference/openapi.json get /campaigns/{id}/opportunities
openapi: 3.1.0
info:
  title: Keupera Public API
  version: 1.0.0
  description: >-
    Programmatic access to every major Keupera module — Keyword Research,
    Backlinks, Content, AI Visibility, and Analytics.


    All endpoints are served under `https://app.keupera.com/api/v1` and
    authenticated with a Bearer API key. Responses are JSON and follow a
    consistent `{ "data": ... }` envelope, with list endpoints adding a `meta`
    object for pagination.
  contact:
    name: Keupera Support
    email: ask@support.keupera.com
    url: https://keupera.com
  x-logo:
    url: /logo/light.svg
servers:
  - url: https://app.keupera.com/api/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Keywords
    description: >-
      Research, enrich, and manage keywords and keyword groups. List, add,
      delete, star, bulk-update status, trigger AI keyword research jobs, and
      organize keywords into groups.
  - name: Backlinks
    description: >-
      Run backlink research campaigns, manage the opportunities discovered for
      each campaign, and generate or send personalized outreach emails.
  - name: Content
    description: >-
      Plan, generate, update, and publish AI-written articles across the full
      content pipeline, and configure per-website content automation.
  - name: AI Visibility
    description: >-
      Track how your brand and competitors appear across LLM answers via Brand
      Radar campaigns, the Prompt Research Engine, and a consolidated visibility
      score.
  - name: Analytics
    description: >-
      Query website traffic, cached Google Search Console data, and AI bot crawl
      activity for a website.
  - name: Account & Utilities
    description: >-
      Verify credentials, connect CMS integrations, and reference internal
      endpoints.
paths:
  /campaigns/{id}/opportunities:
    get:
      tags:
        - Backlinks
      summary: List campaign opportunities
      description: Returns backlink opportunities discovered for a campaign.
      operationId: listCampaignOpportunities
      parameters:
        - $ref: '#/components/parameters/PathId'
      responses:
        '200':
          description: List of opportunities.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Opportunity'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    PathId:
      name: id
      in: path
      required: true
      description: Resource ID.
      schema:
        type: string
        format: uuid
  schemas:
    Opportunity:
      type: object
      properties:
        id:
          type: string
          format: uuid
        url:
          type: string
          format: uri
        title:
          type: string
          example: Top SEO Tools Review
        strategy:
          type: string
          example: guest_post
        type:
          type: string
          example: blog
        relevance_score:
          type: integer
          description: AI-assessed relevance (0–100).
          example: 85
        domain_authority:
          type: integer
          description: Moz-style domain authority.
          example: 45
        domain_rating:
          type: integer
          description: Ahrefs-style domain rating.
          example: 52
        monthly_traffic:
          type: string
          description: Estimated monthly traffic for the page.
          example: 15K
        link_type:
          type: string
          enum:
            - dofollow
            - nofollow
            - unknown
        niche_relevance:
          type: string
          enum:
            - high
            - medium
            - low
        reasoning:
          type: string
          description: AI explanation of why this opportunity was surfaced.
        tags:
          type: array
          items:
            type: string
        status:
          type: string
          example: new
        contact_info:
          type: object
          additionalProperties: true
          nullable: true
        contact_email:
          type: string
          format: email
          nullable: true
        backlink_campaigns:
          type: object
          properties:
            keyword:
              type: string
            websites:
              type: object
              properties:
                url:
                  type: string
                  format: uri
    Error:
      type: object
      description: Standard error envelope.
      properties:
        error:
          type: string
          description: Descriptive error message.
  responses:
    Unauthorized:
      description: Unauthorized — missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Invalid or missing API key
    NotFound:
      description: Not found — resource does not exist or is not accessible with this key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Resource not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass your Keupera API key as a Bearer token: `Authorization: Bearer
        YOUR_KEUPERA_API_KEY`. Generate keys from **Account → API Keys** in your
        Keupera dashboard.

````