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

# /behance/projects

> Get Behance project (gallery) details by numeric id or URL

**Price:** 10 credits

**⚠️ Common errors:** 412: Project not found. Verify the numeric gallery id or project URL.



## OpenAPI

````yaml /openapi/social-media.json post /api/behance/projects
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/behance/projects:
    post:
      tags:
        - /behance
      summary: /behance/projects
      description: >-
        Get Behance project (gallery) details by numeric id or URL


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Project not found. Verify the numeric gallery
        id or project URL.
      operationId: __api_behance_projects_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BehanceProjectsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BehanceProject'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BehanceProjectsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        project:
          type: string
          minLength: 1
      type: object
      required:
        - project
    BehanceProject:
      properties:
        '@type':
          type: string
          default: BehanceProject
        id:
          type: integer
        project_title:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        short_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        dominant_color:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        is_private:
          type: boolean
          default: false
        is_premium:
          type: boolean
          default: false
        has_mature_content:
          type: boolean
          default: false
        appreciation_count:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        license:
          anyOf:
            - type: string
            - type: 'null'
        cta_url:
          anyOf:
            - type: string
            - type: 'null'
        cta_title:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        creative_fields:
          items:
            type: string
          type: array
          default: []
        tools:
          items:
            $ref: '#/components/schemas/BehanceTool'
          type: array
          default: []
        modules:
          items:
            $ref: '#/components/schemas/BehanceProjectModule'
          type: array
          default: []
        source_files:
          items:
            $ref: '#/components/schemas/BehanceSourceFile'
          type: array
          default: []
        galleries:
          items:
            type: string
          type: array
          default: []
        owners:
          items:
            $ref: '#/components/schemas/BehanceUserBrief'
          type: array
          default: []
        teams:
          items:
            $ref: '#/components/schemas/BehanceTeam'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BehanceTool:
      properties:
        '@type':
          type: string
          default: BehanceTool
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        download_url:
          anyOf:
            - type: string
            - type: 'null'
        icon:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    BehanceProjectModule:
      properties:
        '@type':
          type: string
          default: BehanceProjectModule
        id:
          type: integer
        module_type:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        embed_url:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        alt_text:
          anyOf:
            - type: string
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    BehanceSourceFile:
      properties:
        '@type':
          type: string
          default: BehanceSourceFile
        id:
          type: integer
        file_title:
          anyOf:
            - type: string
            - type: 'null'
        extension:
          anyOf:
            - type: string
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        license_type:
          anyOf:
            - type: string
            - type: 'null'
        tier:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    BehanceUserBrief:
      properties:
        '@type':
          type: string
          default: BehanceUserBrief
        id:
          type: integer
        alias:
          anyOf:
            - type: string
            - type: 'null'
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_creator_pro:
          type: boolean
          default: false
        is_featured_freelancer:
          type: boolean
          default: false
        is_available_freelance:
          type: boolean
          default: false
        is_available_full_time:
          type: boolean
          default: false
        is_verified_on_linkedin:
          type: boolean
          default: false
        location:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - type: string
            - type: 'null'
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
        appreciation_count:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    BehanceTeam:
      properties:
        '@type':
          type: string
          default: BehanceTeam
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
      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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````