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

# /kharon/briefs/search

> Search The Brief, Kharon's sanctions and export-control investigative desk, newest article first. Narrows by free-text query and by the desk's own topic, content-type and region tags. Returns article cards with the URL alias, headline, standfirst, abstract, publication and revision dates, reading time, lede image and the full tag set; entries that point at an outside publication carry the outbound link.

**Price:** 5 credits per 100 results

**⚠️ Common errors:** 412: No brief matched the query and filters



## OpenAPI

````yaml /openapi/compliance-sanctions.json post /api/kharon/briefs/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/kharon/briefs/search:
    post:
      tags:
        - /kharon
      summary: /kharon/briefs/search
      description: >-
        Search The Brief, Kharon's sanctions and export-control investigative
        desk, newest article first. Narrows by free-text query and by the desk's
        own topic, content-type and region tags. Returns article cards with the
        URL alias, headline, standfirst, abstract, publication and revision
        dates, reading time, lede image and the full tag set; entries that point
        at an outside publication carry the outbound link.


        **Price:** 5 credits per 100 results


        **⚠️ Common errors:** 412: No brief matched the query and filters
      operationId: __api_kharon_briefs_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KharonBriefsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KharonBriefCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KharonBriefsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        search:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        topics:
          anyOf:
            - items:
                $ref: '#/components/schemas/KharonBriefTopic'
              type: array
            - type: 'null'
        types:
          anyOf:
            - items:
                $ref: '#/components/schemas/KharonBriefType'
              type: array
            - type: 'null'
        regions:
          anyOf:
            - items:
                $ref: '#/components/schemas/KharonBriefRegion'
              type: array
            - type: 'null'
        count:
          type: integer
          maximum: 2000
          minimum: 1
      type: object
      required:
        - count
    KharonBriefCard:
      properties:
        '@type':
          type: string
          default: KharonBriefCard
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        main_category:
          anyOf:
            - type: string
            - type: 'null'
        read_time:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        is_external:
          anyOf:
            - type: boolean
            - type: 'null'
        external_link:
          anyOf:
            - $ref: '#/components/schemas/KharonLink'
            - type: 'null'
        image:
          anyOf:
            - $ref: '#/components/schemas/KharonAsset'
            - type: 'null'
        topics:
          items:
            $ref: '#/components/schemas/KharonCategory'
          type: array
          default: []
        types:
          items:
            $ref: '#/components/schemas/KharonCategory'
          type: array
          default: []
        regions:
          items:
            $ref: '#/components/schemas/KharonCategory'
          type: array
          default: []
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    KharonBriefTopic:
      type: string
      enum:
        - artificial_intelligence
        - enforcement
        - evasion
        - export_controls
        - forced_labor
        - global_trade_and_supply_chains
        - investment
        - military_end_use
        - national_security
        - research_security
        - sanctions
        - terrorism
        - transnational_crime
    KharonBriefType:
      type: string
      enum:
        - article
        - report
        - snapshot
        - webinar
        - column
        - story_collection
        - data_viz
    KharonBriefRegion:
      type: string
      enum:
        - africa
        - asia_pacific
        - central_asia
        - china
        - europe
        - iran
        - latin_america
        - middle_east
        - north_america
        - north_korea
        - oceania
        - russia
        - south_asia
    KharonLink:
      properties:
        '@type':
          type: string
          default: KharonLink
        text:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        link_type:
          anyOf:
            - type: string
            - type: 'null'
        target:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    KharonAsset:
      properties:
        '@type':
          type: string
          default: KharonAsset
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    KharonCategory:
      properties:
        '@type':
          type: string
          default: KharonCategory
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - $ref: '#/components/schemas/KharonAsset'
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````