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

> Browse the 5ch (5ちゃんねる) board catalogue: every board with its directory name, display name, category, server host and URL. Filter by keyword and category, and opt in to the adult BBSPINK boards.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/social-media.json post /api/fivech/boards/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/fivech/boards/search:
    post:
      tags:
        - /fivech
      summary: /fivech/boards/search
      description: >-
        Browse the 5ch (5ちゃんねる) board catalogue: every board with its directory
        name, display name, category, server host and URL. Filter by keyword and
        category, and opt in to the adult BBSPINK boards.


        **Price:** 1 credit
      operationId: __api_fivech_boards_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FivechBoardsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FivechBoardSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FivechBoardsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        count:
          type: integer
          minimum: 1
        keyword:
          type: string
          default: ''
        category:
          anyOf:
            - $ref: '#/components/schemas/FivechBoardCategory'
            - type: 'null'
        include_adult:
          type: boolean
          default: false
      type: object
      required:
        - count
    FivechBoardSummary:
      properties:
        '@type':
          type: string
          default: FivechBoardSummary
        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
      type: object
      required:
        - id
        - name
        - url
        - host
        - category
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FivechBoardCategory:
      type: string
      enum:
        - 地震
        - おすすめ
        - 特別企画
        - be
        - ニュース
        - 世界情勢
        - 案内
        - 運営
        - 馴れ合い
        - AA
        - 社会
        - 会社・職業
        - 裏社会
        - 地域
        - 文化
        - 学問・理系
        - 学問・文系
        - 家電製品
        - 政治経済
        - 食文化
        - 生活
        - ネタ雑談
        - カテゴリ雑談
        - 実況ch
        - 受験・学校
        - 趣味
        - 乗り物
        - スポーツ一般
        - 球技
        - 格闘技
        - 旅行・外出
        - テレビ等
        - 芸能
        - アイドル
        - ギャンブル
        - ゲーム
        - 携帯型ゲーム
        - ネットゲーム
        - 漫画・小説等
        - 音楽
        - 心と身体
        - ＰＣ等
        - ネット関係
        - 雑談系２
        - 大使館
        - 荒野
        - 隔離
        - BBSPINK
    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

````