# Get opportunity details

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /opportunities_get:
    get:
      summary: Get opportunity details
      deprecated: false
      description: ''
      tags:
        - Opportunities
        - Opportunities
      parameters:
        - name: opportunity_id
          in: query
          description: ''
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Opportunity details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Opportunity'
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: Opportunities
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1150986/apis/api-25474684-run
components:
  schemas:
    Opportunity:
      type: object
      properties:
        id:
          type: string
          format: uuid
        title:
          type: string
        type:
          type: string
          enum:
            - hackathon
            - job
            - grant
            - scholarship
            - learning_resource
            - competition
        description:
          type: string
        required_skills:
          type: array
          items:
            type: string
        experience_level_required:
          type: string
        category:
          type: array
          items:
            type: string
        location:
          type: string
        remote_eligible:
          type: boolean
        deadline:
          type: integer
        prize_pool:
          type: number
        application_url:
          type: string
        source:
          type: string
        view_count:
          type: integer
        created_at:
          type: integer
      x-apidog-orders:
        - id
        - title
        - type
        - description
        - required_skills
        - experience_level_required
        - category
        - location
        - remote_eligible
        - deadline
        - prize_pool
        - application_url
        - source
        - view_count
        - created_at
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
