# Get developer profile

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /developers_get:
    get:
      summary: Get developer profile
      deprecated: false
      description: ''
      tags:
        - Developers
        - Developers
      parameters:
        - name: developer_id
          in: query
          description: ''
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Developer profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Developer'
          headers: {}
          x-apidog-name: ''
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                x-apidog-orders:
                  - code
                  - message
                x-apidog-ignore-properties: []
          headers: {}
          x-apidog-name: NotFound
      security: []
      x-apidog-folder: Developers
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1150986/apis/api-25474681-run
components:
  schemas:
    Developer:
      type: object
      properties:
        id:
          type: string
          format: uuid
        email:
          type: string
        name:
          type: string
        skills:
          type: array
          items:
            type: string
        experience_level:
          type: string
        interests:
          type: array
          items:
            type: string
        location:
          type: string
        willing_to_relocate:
          type: boolean
        looking_for:
          type: array
          items:
            type: string
        created_at:
          type: integer
        updated_at:
          type: integer
      x-apidog-orders:
        - id
        - email
        - name
        - skills
        - experience_level
        - interests
        - location
        - willing_to_relocate
        - looking_for
        - created_at
        - updated_at
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
