> ## Documentation Index
> Fetch the complete documentation index at: https://docs.basic.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Check project slug availability

> Checks if a project slug is available for use



## OpenAPI

````yaml get /project/slug
openapi: 3.0.0
info:
  title: Basic Admin API
  description: API for Basic Admin
  version: 0.1.0
servers:
  - url: https://api.basic.tech
    description: Production server
  - url: https://beta.api.basic.tech
    description: Staging server
  - url: http://localhost:3003
    description: Development server
security: []
tags:
  - name: auth
    description: Authentication and authorization end-points
  - name: projects
    description: Project management end-points
  - name: project-keys
    description: Project API key management end-points
  - name: project-users
    description: Project user management end-points
  - name: project-schema
    description: Project schema management end-points
  - name: project-upload
    description: Project image upload end-points
  - name: teams
    description: Project user management end-points
  - name: utils
    description: Utility end-points - very useful, trust me
externalDocs:
  url: https://docs.basic.tech
  description: Find more info here
paths:
  /project/slug:
    get:
      tags:
        - projects
      summary: Check project slug availability
      description: Checks if a project slug is available for use
      parameters:
        - schema:
            type: string
          in: query
          name: slug
          required: true
          description: Project slug to check availability for
      responses:
        '200':
          description: Slug availability check result
          content:
            application/json:
              schema:
                description: Slug availability check result
                type: object
                properties:
                  available:
                    type: boolean
                    description: Whether the slug is available
        '400':
          description: Bad Request - Invalid slug
          content:
            application/json:
              schema:
                description: Bad Request - Invalid slug
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  slugified:
                    type: string

````