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

# /edx/programs/search

> Search and filter the edX (edx.org) program catalog (Professional Certificate, MicroMasters, MicroBachelors, XSeries, Professional Program). Combine a free-text query with program type, subject, level, language, availability, and educator/school filters. Each result is a program summary card.

**Price:** 10 credits per 100 results



## OpenAPI

````yaml /openapi/education-courses.json post /api/edx/programs/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/edx/programs/search:
    post:
      tags:
        - /edx
      summary: /edx/programs/search
      description: >-
        Search and filter the edX (edx.org) program catalog (Professional
        Certificate, MicroMasters, MicroBachelors, XSeries, Professional
        Program). Combine a free-text query with program type, subject, level,
        language, availability, and educator/school filters. Each result is a
        program summary card.


        **Price:** 10 credits per 100 results
      operationId: __api_edx_programs_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EdxProgramsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EdxProductSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EdxProgramsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          default: ''
        count:
          type: integer
          minimum: 1
        program_type:
          anyOf:
            - $ref: '#/components/schemas/EdxProgramType'
            - type: 'null'
        subject:
          anyOf:
            - $ref: '#/components/schemas/EdxSubject'
            - type: 'null'
        level:
          anyOf:
            - $ref: '#/components/schemas/EdxLevel'
            - type: 'null'
        language:
          anyOf:
            - $ref: '#/components/schemas/EdxLanguage'
            - type: 'null'
        translation_language:
          anyOf:
            - $ref: '#/components/schemas/EdxTranslationLanguage'
            - type: 'null'
        availability:
          anyOf:
            - $ref: '#/components/schemas/EdxAvailability'
            - type: 'null'
        skill:
          anyOf:
            - type: string
            - type: 'null'
        partner:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - count
    EdxProductSummary:
      properties:
        '@type':
          type: string
          default: EdxProductSummary
        id:
          type: string
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        product:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        short_description:
          anyOf:
            - type: string
            - type: 'null'
        full_description:
          anyOf:
            - type: string
            - type: 'null'
        levels:
          items:
            type: string
          type: array
          default: []
        subjects:
          items:
            type: string
          type: array
          default: []
        skills:
          items:
            type: string
          type: array
          default: []
        tags:
          items:
            type: string
          type: array
          default: []
        partners:
          items:
            type: string
          type: array
          default: []
        partner_keys:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        strikethrough_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          items:
            type: string
          type: array
          default: []
        weeks_to_complete:
          anyOf:
            - type: integer
            - type: 'null'
        min_effort:
          anyOf:
            - type: integer
            - type: 'null'
        max_effort:
          anyOf:
            - type: integer
            - type: 'null'
        recent_enrollment_count:
          anyOf:
            - type: integer
            - type: 'null'
        course_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_part_of_program:
          anyOf:
            - type: boolean
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    EdxProgramType:
      type: string
      enum:
        - Professional Certificate
        - MicroMasters
        - MicroBachelors
        - XSeries
        - Professional Program
        - Certificate
    EdxSubject:
      type: string
      enum:
        - Architecture
        - Art & Culture
        - Artificial Intelligence
        - Biology & Life Sciences
        - Business & Management
        - Chemistry
        - Communication
        - Computer Science
        - Data Analysis & Statistics
        - Design
        - Economics & Finance
        - Education & Teacher Training
        - Electronics
        - Energy & Earth Sciences
        - Engineering
        - Environmental Studies
        - Ethics
        - Food & Nutrition
        - Health & Safety
        - History
        - Humanities
        - Language
        - Law
        - Literature
        - Math
        - Medicine
        - Music
        - Philanthropy
        - Philosophy & Ethics
        - Physics
        - Science
        - Social Sciences
        - Sustainability
    EdxLevel:
      type: string
      enum:
        - Introductory
        - Intermediate
        - Advanced
    EdxLanguage:
      type: string
      enum:
        - Arabic
        - Bengali
        - Chinese
        - Dutch
        - English
        - French
        - German
        - Hungarian
        - Italian
        - Japanese
        - Korean
        - Persian
        - Portuguese
        - Russian
        - Spanish
    EdxTranslationLanguage:
      type: string
      enum:
        - Arabic
        - Chinese - China
        - English
        - French
        - German - Germany
        - Greek
        - Hindi
        - Indonesian
        - Italian - Italy
        - Portuguese - Brazil
        - Russian
        - Spanish
        - Spanish - Latin America and Caribbean
        - Spanish - Spain (Modern)
        - Thai
    EdxAvailability:
      type: string
      enum:
        - Current
        - Upcoming
        - Archived
    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

````