> ## 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.

# /techcrunch/articles

> Get a full TechCrunch article by id, slug or URL: headline, subtitle, excerpt, the complete article body as plain text and as HTML, separate publish and update timestamps, word count and reading time, every credited author with job title and socials, the section and topic-tag taxonomies, region and storyline collections, and the featured image with its photo credit.

**Price:** 1 credit

**⚠️ Common errors:** 412: Article not found (well-formed but nonexistent id, slug or URL)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/techcrunch/articles
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/techcrunch/articles:
    post:
      tags:
        - /techcrunch
      summary: /techcrunch/articles
      description: >-
        Get a full TechCrunch article by id, slug or URL: headline, subtitle,
        excerpt, the complete article body as plain text and as HTML, separate
        publish and update timestamps, word count and reading time, every
        credited author with job title and socials, the section and topic-tag
        taxonomies, region and storyline collections, and the featured image
        with its photo credit.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Article not found (well-formed but
        nonexistent id, slug or URL)
      operationId: __api_techcrunch_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TechcrunchArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TechcrunchArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TechcrunchArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    TechcrunchArticle:
      properties:
        '@type':
          type: string
          default: TechcrunchArticle
        id:
          type: integer
        article_title:
          type: string
        alias:
          type: string
        web_url:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        excerpt:
          anyOf:
            - type: string
            - type: 'null'
        subtitle:
          anyOf:
            - type: string
            - type: 'null'
        social_title:
          anyOf:
            - type: string
            - type: 'null'
        seo_description:
          anyOf:
            - type: string
            - type: 'null'
        reading_time_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        is_brief:
          type: boolean
          default: false
        is_breaking:
          type: boolean
          default: false
        is_featured:
          type: boolean
          default: false
        post_format:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_id:
          anyOf:
            - type: integer
            - type: 'null'
        apple_news_url:
          anyOf:
            - type: string
            - type: 'null'
        wp_author_id:
          anyOf:
            - type: integer
            - type: 'null'
        authors:
          items:
            $ref: '#/components/schemas/TechcrunchArticleAuthor'
          type: array
          default: []
        categories:
          items:
            $ref: '#/components/schemas/TechcrunchTerm'
          type: array
          default: []
        tags:
          items:
            $ref: '#/components/schemas/TechcrunchTerm'
          type: array
          default: []
        regions:
          items:
            $ref: '#/components/schemas/TechcrunchTerm'
          type: array
          default: []
        storylines:
          items:
            $ref: '#/components/schemas/TechcrunchTerm'
          type: array
          default: []
        text:
          anyOf:
            - type: string
            - type: 'null'
        html:
          anyOf:
            - type: string
            - type: 'null'
        word_count:
          anyOf:
            - type: integer
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        featured_image:
          anyOf:
            - $ref: '#/components/schemas/TechcrunchImage'
            - type: 'null'
      type: object
      required:
        - id
        - article_title
        - alias
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TechcrunchArticleAuthor:
      properties:
        '@type':
          type: string
          default: TechcrunchArticleAuthor
        id:
          type: integer
        name:
          type: string
        alias:
          type: string
        login:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        organization:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        article_count:
          anyOf:
            - type: integer
            - type: 'null'
        guest_author_id:
          anyOf:
            - type: integer
            - type: 'null'
        twitter_url:
          anyOf:
            - type: string
            - type: 'null'
        linkedin_url:
          anyOf:
            - type: string
            - type: 'null'
        facebook_url:
          anyOf:
            - type: string
            - type: 'null'
        homepage_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
        - alias
    TechcrunchTerm:
      properties:
        '@type':
          type: string
          default: TechcrunchTerm
        id:
          type: integer
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        taxonomy:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        content_count:
          anyOf:
            - type: integer
            - type: 'null'
        parent_id:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - name
    TechcrunchImage:
      properties:
        '@type':
          type: string
          default: TechcrunchImage
        id:
          type: integer
        image:
          type: string
        image_title:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        copyright:
          anyOf:
            - type: string
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        camera:
          anyOf:
            - type: string
            - type: 'null'
        aperture:
          anyOf:
            - type: number
            - type: 'null'
        focal_length:
          anyOf:
            - type: number
            - type: 'null'
        iso:
          anyOf:
            - type: integer
            - type: 'null'
        shutter_speed:
          anyOf:
            - type: number
            - type: 'null'
        taken_at:
          anyOf:
            - type: integer
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        file_size:
          anyOf:
            - type: integer
            - type: 'null'
        media_type:
          anyOf:
            - type: string
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        post_id:
          anyOf:
            - type: integer
            - type: 'null'
        sizes:
          items:
            $ref: '#/components/schemas/TechcrunchImageSize'
          type: array
          default: []
      type: object
      required:
        - id
        - image
    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
    TechcrunchImageSize:
      properties:
        '@type':
          type: string
          default: TechcrunchImageSize
        name:
          type: string
        image:
          type: string
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - image
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````