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

# Get GTM strategy

> Get GTM strategy

**CLI:**

```bash theme={null}
puffle strategy --id <id>
puffle strategy --id <id> --limit <limit> --offset <offset>
```

## Overview

Get GTM strategy

This page documents `get /api/strategies/{id}`. Use the request and response sections on this page for accepted parameters, payload fields, response fields, and authentication behavior.

## AI agent notes

* Confirm the operation matches the user's intent before calling it.
* For write operations, confirm the user intends to change state.
* Surface validation, permission, and not-found errors instead of retrying unchanged.


## OpenAPI

````yaml get /api/strategies/{id}
openapi: 3.0.3
info:
  title: Puffle API
  version: 1.0.0
  description: >-
    HTTP API for the Puffle GTM platform - strategy planning, campaign-backed
    Outbound execution, Puffle Agent runs, sender management, and Unibox reply
    workflows. Designed for operation by both humans and autonomous AI agents.
    Agents should start at the [Agent Playbook](/guides/agent-playbook) which
    prescribes a workspace-context check (`GET /api/context`) and core user
    journeys with exact call ordering.
  contact:
    name: Puffle Support
    url: https://puffle.ai
servers:
  - url: https://app.puffle.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Campaigns
    description: >-
      Campaign-backed Outbound execution. These endpoints manage draft,
      launching, active, paused, and completed Outbound runs with sequence
      nodes, contacts, and sender accounts.
  - name: Accounts
    description: Signed-in user account, settings, and workspace context endpoints.
  - name: Senders
    description: >-
      Connected sender accounts, email inboxes, sending domains, DNS
      verification, warmup, and sender capacity.
  - name: Socials
    description: >-
      Social post scheduling and inbox — schedule, publish, archive, and delete
      posts across LinkedIn, Twitter, Threads, Bluesky via the Late (late.ai)
      integration. Connect social accounts via OAuth, pull analytics, monitor
      mentions.
paths:
  /api/strategies/{id}:
    get:
      tags:
        - Strategies
      summary: Get GTM strategy
      description: >-
        Fetch one GTM strategy with the leads/results found by its executor
        runs.
      operationId: strategies.get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            exclusiveMinimum: true
            maximum: 100
            minimum: 0
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            maximum: 9007199254740991
      responses:
        '200':
          description: Strategy detail.
          content:
            application/json:
              schema:
                type: object
                properties:
                  strategy:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      title:
                        type: string
                      description:
                        type: string
                      kind:
                        type: string
                        enum:
                          - recurring
                          - static
                      scheduleEnabled:
                        type: boolean
                      definitionHash:
                        type: string
                        minLength: 64
                        maxLength: 64
                        nullable: true
                      intent:
                        type: string
                      sellerContext:
                        type: string
                      sourcePlans:
                        type: array
                        items:
                          type: object
                          properties:
                            sourceId:
                              type: string
                              enum:
                                - linkedin_posts
                                - linkedin_jobs
                                - linkedin_people
                                - news
                                - reddit
                                - hacker_news
                                - x_twitter
                                - hiring_cafe
                                - github
                            query:
                              minItems: 1
                              type: array
                              items:
                                type: string
                                minLength: 1
                                maxLength: 240
                            reason:
                              type: string
                              minLength: 1
                              maxLength: 240
                          required:
                            - sourceId
                            - query
                            - reason
                          additionalProperties: false
                      details:
                        type: object
                        properties:
                          channel:
                            type: string
                          signal:
                            type: string
                          expectedLead:
                            type: string
                          whyThisShouldWork:
                            type: string
                        additionalProperties: {}
                      lastRunId:
                        type: string
                        format: uuid
                        nullable: true
                      outboundCampaignId:
                        type: string
                        format: uuid
                        nullable: true
                      leadCount:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      contactedCount:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      nextRunAt:
                        type: string
                        nullable: true
                      createdAt:
                        type: string
                      updatedAt:
                        type: string
                    required:
                      - id
                      - title
                      - description
                      - kind
                      - scheduleEnabled
                      - definitionHash
                      - intent
                      - sellerContext
                      - sourcePlans
                      - details
                      - lastRunId
                      - outboundCampaignId
                      - leadCount
                      - contactedCount
                      - nextRunAt
                      - createdAt
                      - updatedAt
                    additionalProperties: false
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        strategyId:
                          type: string
                          format: uuid
                        runId:
                          type: string
                          format: uuid
                        sourceId:
                          type: string
                        sourceUrl:
                          type: string
                        query:
                          type: string
                        strategyReason:
                          type: string
                        signalReason:
                          type: string
                          nullable: true
                        title:
                          type: string
                        content:
                          type: string
                        occurredAt:
                          type: string
                          nullable: true
                        author:
                          nullable: true
                        metadata:
                          type: object
                          additionalProperties: {}
                        lead:
                          nullable: true
                        entityCompany:
                          type: string
                          nullable: true
                        entityPerson:
                          type: string
                          nullable: true
                        score:
                          type: integer
                          minimum: -9007199254740991
                          maximum: 9007199254740991
                        qualityTier:
                          type: string
                          enum:
                            - excellent
                            - good
                            - possible
                            - rejected
                        status:
                          type: string
                        createdAt:
                          type: string
                      required:
                        - id
                        - strategyId
                        - runId
                        - sourceId
                        - sourceUrl
                        - query
                        - strategyReason
                        - signalReason
                        - title
                        - content
                        - occurredAt
                        - author
                        - metadata
                        - lead
                        - entityCompany
                        - entityPerson
                        - score
                        - qualityTier
                        - status
                        - createdAt
                      additionalProperties: false
                  pagination:
                    type: object
                    properties:
                      total:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      limit:
                        type: integer
                        exclusiveMinimum: true
                        maximum: 9007199254740991
                        minimum: 0
                      offset:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      hasMore:
                        type: boolean
                    required:
                      - total
                      - limit
                      - offset
                      - hasMore
                    additionalProperties: false
                  latestRun:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      status:
                        type: string
                      counts:
                        type: object
                        additionalProperties:
                          type: number
                      errors:
                        type: array
                        items:
                          type: object
                          properties:
                            sourceId:
                              type: string
                            error:
                              type: string
                          required:
                            - sourceId
                            - error
                          additionalProperties: {}
                      sourceStatus:
                        type: array
                        items:
                          type: object
                          properties:
                            sourceId:
                              type: string
                            status:
                              type: string
                            error:
                              type: string
                            queryDiagnostics:
                              type: array
                              items:
                                type: object
                                properties:
                                  query:
                                    type: string
                                  fetched:
                                    type: integer
                                    minimum: 0
                                    maximum: 9007199254740991
                                  normalized:
                                    type: integer
                                    minimum: 0
                                    maximum: 9007199254740991
                                  ranked:
                                    type: integer
                                    minimum: 0
                                    maximum: 9007199254740991
                                  leadExtracted:
                                    type: integer
                                    minimum: 0
                                    maximum: 9007199254740991
                                  apolloEnriched:
                                    type: integer
                                    minimum: 0
                                    maximum: 9007199254740991
                                  qualityKept:
                                    type: integer
                                    minimum: 0
                                    maximum: 9007199254740991
                                  stored:
                                    type: integer
                                    minimum: 0
                                    maximum: 9007199254740991
                                  maxResults:
                                    type: integer
                                    exclusiveMinimum: true
                                    maximum: 9007199254740991
                                    minimum: 0
                                  keywordDepthBoosted:
                                    type: boolean
                                  currentRunDepthExpanded:
                                    type: boolean
                                  searchAttempts:
                                    type: array
                                    items:
                                      type: object
                                      properties:
                                        attempt:
                                          type: integer
                                          exclusiveMinimum: true
                                          maximum: 9007199254740991
                                          minimum: 0
                                        stage:
                                          type: string
                                          enum:
                                            - exact
                                            - broadened
                                        providerQuery:
                                          type: string
                                        filters:
                                          type: object
                                          additionalProperties:
                                            anyOf:
                                              - type: string
                                              - type: number
                                              - type: boolean
                                              - type: array
                                                items:
                                                  type: string
                                        reason:
                                          type: string
                                        fetched:
                                          type: integer
                                          minimum: 0
                                          maximum: 9007199254740991
                                      required:
                                        - attempt
                                        - stage
                                        - reason
                                        - fetched
                                      additionalProperties: false
                                  error:
                                    type: string
                                required:
                                  - query
                                  - fetched
                                  - normalized
                                  - ranked
                                  - leadExtracted
                                  - qualityKept
                                  - stored
                                  - maxResults
                                additionalProperties: false
                          required:
                            - sourceId
                            - status
                          additionalProperties: {}
                      triggerRunId:
                        type: string
                        nullable: true
                      createdAt:
                        type: string
                      updatedAt:
                        type: string
                    required:
                      - id
                      - status
                      - counts
                      - errors
                      - sourceStatus
                      - triggerRunId
                      - createdAt
                      - updatedAt
                    additionalProperties: false
                    nullable: true
                required:
                  - strategy
                  - results
                  - pagination
                  - latestRun
                additionalProperties: false
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '404':
          description: Not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '500':
          description: Server error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: pk_live_...

````