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

# /aljazeera/authors/articles

> Get articles published by an Al Jazeera author (by author page URL or alias), newest first: title, excerpt, publish date, article URL, type (news, opinion, video, gallery, longform, liveblog), co-authors, news agency sources, featured image and audio version.

**Price:** 5 credits per 100 results

**⚠️ Common errors:** 412: Author not found (well-formed but nonexistent alias or URL)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/aljazeera/authors/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/aljazeera/authors/articles:
    post:
      tags:
        - /aljazeera
      summary: /aljazeera/authors/articles
      description: >-
        Get articles published by an Al Jazeera author (by author page URL or
        alias), newest first: title, excerpt, publish date, article URL, type
        (news, opinion, video, gallery, longform, liveblog), co-authors, news
        agency sources, featured image and audio version.


        **Price:** 5 credits per 100 results


        **⚠️ Common errors:** 412: Author not found (well-formed but nonexistent
        alias or URL)
      operationId: __api_aljazeera_authors_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AljazeeraAuthorsArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AljazeeraAuthorArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AljazeeraAuthorsArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        author:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - author
        - count
    AljazeeraAuthorArticle:
      properties:
        '@type':
          type: string
          default: AljazeeraAuthorArticle
        id:
          type: integer
        replacement_title:
          anyOf:
            - type: string
            - type: 'null'
        post_type:
          anyOf:
            - type: string
            - type: 'null'
        excerpt:
          anyOf:
            - type: string
            - type: 'null'
        labels:
          items:
            type: string
          type: array
          default: []
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        short_url:
          anyOf:
            - type: string
            - type: 'null'
        proxy_short_url:
          anyOf:
            - type: string
            - type: 'null'
        external_url:
          anyOf:
            - type: string
            - type: 'null'
        is_breaking:
          type: boolean
          default: false
        is_developing:
          type: boolean
          default: false
        is_live:
          type: boolean
          default: false
        authors:
          items:
            $ref: '#/components/schemas/AljazeeraAuthor'
          type: array
          default: []
        sources:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        image_credit:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        gallery_images:
          items:
            $ref: '#/components/schemas/AljazeeraGalleryImage'
          type: array
          default: []
        gallery_image_count:
          anyOf:
            - type: integer
            - type: 'null'
        audio_url:
          anyOf:
            - type: string
            - type: 'null'
        audio_duration:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - id
        - title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AljazeeraAuthor:
      properties:
        '@type':
          type: string
          default: AljazeeraAuthor
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        twitter_url:
          anyOf:
            - type: string
            - type: 'null'
        facebook_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    AljazeeraGalleryImage:
      properties:
        '@type':
          type: string
          default: AljazeeraGalleryImage
        image:
          type: string
        caption:
          anyOf:
            - type: string
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - 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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````