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

# /netease/artists

> Get a NetEase Cloud Music artist with their biography, catalogue sizes and most-played tracks

**Price:** 1 credit

**⚠️ Common errors:** 412: No artist exists for the given id.



## OpenAPI

````yaml /openapi/music.json post /api/netease/artists
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/netease/artists:
    post:
      tags:
        - /netease
      summary: /netease/artists
      description: >-
        Get a NetEase Cloud Music artist with their biography, catalogue sizes
        and most-played tracks


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No artist exists for the given id.
      operationId: __api_netease_artists_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NeteaseArtistPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NeteaseArtistDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NeteaseArtistPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        artist:
          type: string
          minLength: 1
      type: object
      required:
        - artist
    NeteaseArtistDetail:
      properties:
        '@type':
          type: string
          default: NeteaseArtistDetail
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        aliases:
          items:
            type: string
          type: array
          default: []
        translated_names:
          items:
            type: string
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        square_image:
          anyOf:
            - type: string
            - type: 'null'
        album_count:
          anyOf:
            - type: integer
            - type: 'null'
        track_count:
          anyOf:
            - type: integer
            - type: 'null'
        mv_count:
          anyOf:
            - type: integer
            - type: 'null'
        user_id:
          anyOf:
            - type: string
            - type: 'null'
        biography:
          anyOf:
            - type: string
            - type: 'null'
        sections:
          items:
            $ref: '#/components/schemas/NeteaseArtistSection'
          type: array
          default: []
        top_tracks:
          items:
            $ref: '#/components/schemas/NeteaseTrack'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NeteaseArtistSection:
      properties:
        '@type':
          type: string
          default: NeteaseArtistSection
        heading:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - heading
    NeteaseTrack:
      properties:
        '@type':
          type: string
          default: NeteaseTrack
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        main_title:
          anyOf:
            - type: string
            - type: 'null'
        additional_title:
          anyOf:
            - type: string
            - type: 'null'
        aliases:
          items:
            type: string
          type: array
          default: []
        translated_names:
          items:
            type: string
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        artists:
          items:
            $ref: '#/components/schemas/NeteaseArtist'
          type: array
          default: []
        album:
          anyOf:
            - $ref: '#/components/schemas/NeteaseAlbum'
            - type: 'null'
        duration_seconds:
          anyOf:
            - type: integer
            - type: 'null'
        popularity:
          anyOf:
            - type: number
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        track_number:
          anyOf:
            - type: integer
            - type: 'null'
        disc:
          anyOf:
            - type: string
            - type: 'null'
        mv_id:
          anyOf:
            - type: string
            - type: 'null'
        fee_code:
          anyOf:
            - type: string
            - type: 'null'
        copyright_id:
          anyOf:
            - type: string
            - type: 'null'
        comment_thread_id:
          anyOf:
            - type: string
            - type: 'null'
        ringtone_id:
          anyOf:
            - type: string
            - type: 'null'
        origin_cover_type_code:
          anyOf:
            - type: string
            - type: 'null'
        original_song:
          anyOf:
            - $ref: '#/components/schemas/NeteaseOriginalSong'
            - type: 'null'
        is_single:
          anyOf:
            - type: boolean
            - type: 'null'
        has_copyright:
          anyOf:
            - type: boolean
            - type: 'null'
        content_tags:
          items:
            type: string
          type: array
          default: []
        audio:
          items:
            $ref: '#/components/schemas/NeteaseAudio'
          type: array
          default: []
      type: object
      required:
        - id
    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
    NeteaseArtist:
      properties:
        '@type':
          type: string
          default: NeteaseArtist
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        aliases:
          items:
            type: string
          type: array
          default: []
        translated_names:
          items:
            type: string
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        square_image:
          anyOf:
            - type: string
            - type: 'null'
        album_count:
          anyOf:
            - type: integer
            - type: 'null'
        track_count:
          anyOf:
            - type: integer
            - type: 'null'
        mv_count:
          anyOf:
            - type: integer
            - type: 'null'
        user_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    NeteaseAlbum:
      properties:
        '@type':
          type: string
          default: NeteaseAlbum
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        aliases:
          items:
            type: string
          type: array
          default: []
        translated_names:
          items:
            type: string
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        artists:
          items:
            $ref: '#/components/schemas/NeteaseArtist'
          type: array
          default: []
        company:
          anyOf:
            - type: string
            - type: 'null'
        album_type:
          anyOf:
            - type: string
            - type: 'null'
        album_subtype:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        track_count:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        copyright_id:
          anyOf:
            - type: string
            - type: 'null'
        comment_thread_id:
          anyOf:
            - type: string
            - type: 'null'
        status_code:
          anyOf:
            - type: string
            - type: 'null'
        is_paid:
          anyOf:
            - type: boolean
            - type: 'null'
        is_on_sale:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    NeteaseOriginalSong:
      properties:
        '@type':
          type: string
          default: NeteaseOriginalSong
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        artists:
          items:
            $ref: '#/components/schemas/NeteaseArtist'
          type: array
          default: []
        album:
          anyOf:
            - $ref: '#/components/schemas/NeteaseAlbum'
            - type: 'null'
      type: object
      required:
        - id
    NeteaseAudio:
      properties:
        '@type':
          type: string
          default: NeteaseAudio
        quality:
          type: string
        bitrate:
          anyOf:
            - type: integer
            - type: 'null'
        size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
        sample_rate:
          anyOf:
            - type: integer
            - type: 'null'
        file_format:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - quality
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````