basic.tech docs home pagelight logodark logo
  • Github
  • Speak with us
  • Speak with us
Documentation
Readings
Database APIs (server side)
  • POST
    Create item
  • GET
    Get all items in a table
  • GET
    Get specific item in a table
  • PUT
    Replace an item
  • PATCH
    Update an item
  • DEL
    Delete an item
projects
  • POST
    Create a new project
  • GET
    Get project details
  • PATCH
    Update project details
  • DEL
    Delete a project
  • GET
    Get all admin projects of developer
  • POST
    Upload project image
  • GET
    Check project slug availability
projects-users
  • GET
    Get all users in project
  • GET
    Get user details
  • PATCH
    Update user details
  • DEL
    Delete a user from the project
schema
  • GET
    Get project schema
  • POST
    Update project schema
  • PATCH
    Merge and update project schema
  • POST
    Compare two schemas
  • POST
    Verify update schema
project API keys
  • POST
    Create new API key
  • GET
    Get all keys for a project
  • GET
    Get specific API key
  • PATCH
    Update API key
  • POST
    Regenerate API key
  • POST
    Verify API key
  • DEL
    Delete API key
utilities
  • GET
    Convert text to URL-friendly slug
  • GET
    Check utils endpoint status
utilities

Check utils endpoint status

GET
/
utils
/
Copy
curl --request GET \
  --url https://api.basic.tech/utils/
Copy
{
  "status": "<string>"
}

Response

200 - application/json

Default Response

The response is of type object.

Convert text to URL-friendly slug
twittergithub
Powered by Mintlify
Copy
curl --request GET \
  --url https://api.basic.tech/utils/
Copy
{
  "status": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.