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

# /fivech/boards

> Get a 5ch (5ちゃんねる) board by its directory name: display name, category, server host, default anonymous name, board logo, number of live threads, posting limits and board flags.

**Price:** 1 credit

**⚠️ Common errors:** 412: Board not found (well-formed directory name but no such board on 5ch)



## OpenAPI

````yaml /openapi/social-media.json post /api/fivech/boards
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/fivech/boards:
    post:
      tags:
        - /fivech
      summary: /fivech/boards
      description: >-
        Get a 5ch (5ちゃんねる) board by its directory name: display name, category,
        server host, default anonymous name, board logo, number of live threads,
        posting limits and board flags.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Board not found (well-formed directory name
        but no such board on 5ch)
      operationId: __api_fivech_boards_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FivechBoardsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FivechBoard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FivechBoardsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        board:
          type: string
          minLength: 1
      type: object
      required:
        - board
    FivechBoard:
      properties:
        '@type':
          type: string
          default: FivechBoard
        id:
          type: string
        name:
          type: string
        url:
          type: string
        host:
          type: string
        category:
          type: string
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        is_adult:
          type: boolean
          default: false
        default_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        thread_count:
          anyOf:
            - type: integer
            - type: 'null'
        subject_max_length:
          anyOf:
            - type: integer
            - type: 'null'
        name_max_length:
          anyOf:
            - type: integer
            - type: 'null'
        mail_max_length:
          anyOf:
            - type: integer
            - type: 'null'
        message_max_length:
          anyOf:
            - type: integer
            - type: 'null'
        thread_creation_interval:
          anyOf:
            - type: integer
            - type: 'null'
        has_forced_id:
          type: boolean
          default: false
        has_slip:
          type: boolean
          default: false
        shows_ip:
          type: boolean
          default: false
        has_be_id:
          type: boolean
          default: false
        settings:
          additionalProperties:
            type: string
          type: object
          default: {}
      type: object
      required:
        - id
        - name
        - url
        - host
        - category
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````