> ## 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/resources

> Fetch one item from Kharon's resource library — customer stories, guides, reports, white papers, press releases, product notes and award announcements — by its alias. Returns the body block by block as HTML, the abstract, byline and named authors with their bios and social handles, publication date, reading time, sector and content-type tags, imagery and the page's SEO metadata.

**Price:** 1 credit

**⚠️ Common errors:** 412: No resource carries that alias



## OpenAPI

````yaml /openapi/compliance-sanctions.json post /api/kharon/resources
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/resources:
    post:
      tags:
        - /kharon
      summary: /kharon/resources
      description: >-
        Fetch one item from Kharon's resource library — customer stories,
        guides, reports, white papers, press releases, product notes and award
        announcements — by its alias. Returns the body block by block as HTML,
        the abstract, byline and named authors with their bios and social
        handles, publication date, reading time, sector and content-type tags,
        imagery and the page's SEO metadata.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No resource carries that alias
      operationId: __api_kharon_resources_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KharonResourcePayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KharonResource'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KharonResourcePayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        alias:
          type: string
          minLength: 1
      type: object
      required:
        - alias
    KharonResource:
      properties:
        '@type':
          type: string
          default: KharonResource
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        read_time:
          anyOf:
            - type: string
            - type: 'null'
        template:
          anyOf:
            - type: string
            - type: 'null'
        cta_label:
          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'
        event_date:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - $ref: '#/components/schemas/KharonAsset'
            - type: 'null'
        types:
          items:
            $ref: '#/components/schemas/KharonCategory'
          type: array
          default: []
        sectors:
          items:
            $ref: '#/components/schemas/KharonCategory'
          type: array
          default: []
        authors:
          items:
            $ref: '#/components/schemas/KharonPerson'
          type: array
          default: []
        caption:
          anyOf:
            - type: string
            - type: 'null'
        byline:
          anyOf:
            - type: string
            - type: 'null'
        editorial_updated_at:
          anyOf:
            - type: string
            - type: 'null'
        award_title:
          anyOf:
            - type: string
            - type: 'null'
        award_provider:
          anyOf:
            - type: string
            - type: 'null'
        side_image:
          anyOf:
            - $ref: '#/components/schemas/KharonAsset'
            - type: 'null'
        background_image:
          anyOf:
            - $ref: '#/components/schemas/KharonAsset'
            - type: 'null'
        body:
          items:
            $ref: '#/components/schemas/KharonContentBlock'
          type: array
          default: []
        seo:
          anyOf:
            - $ref: '#/components/schemas/KharonSeo'
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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
    KharonPerson:
      properties:
        '@type':
          type: string
          default: KharonPerson
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        linkedin:
          anyOf:
            - type: string
            - type: 'null'
        twitter:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - $ref: '#/components/schemas/KharonAsset'
            - type: 'null'
        positions:
          items:
            $ref: '#/components/schemas/KharonPosition'
          type: array
          default: []
      type: object
    KharonContentBlock:
      properties:
        '@type':
          type: string
          default: KharonContentBlock
        kind:
          anyOf:
            - type: string
            - type: 'null'
        heading:
          anyOf:
            - type: string
            - type: 'null'
        html:
          anyOf:
            - type: string
            - type: 'null'
        subtext:
          anyOf:
            - type: string
            - type: 'null'
        embed_url:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            $ref: '#/components/schemas/KharonAsset'
          type: array
          default: []
        related:
          items:
            $ref: '#/components/schemas/KharonRelatedPost'
          type: array
          default: []
        sub_blocks:
          items:
            $ref: '#/components/schemas/KharonContentBlock'
          type: array
          default: []
      type: object
    KharonSeo:
      properties:
        '@type':
          type: string
          default: KharonSeo
        keywords:
          anyOf:
            - type: string
            - type: 'null'
        og_title:
          anyOf:
            - type: string
            - type: 'null'
        og_description:
          anyOf:
            - type: string
            - type: 'null'
        canonical_url:
          anyOf:
            - type: string
            - type: 'null'
        noindex:
          anyOf:
            - type: boolean
            - type: 'null'
        nofollow:
          anyOf:
            - type: boolean
            - 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
    KharonPosition:
      properties:
        '@type':
          type: string
          default: KharonPosition
        company:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    KharonRelatedPost:
      properties:
        '@type':
          type: string
          default: KharonRelatedPost
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````