Access and share your data via REST API

Securely manage your data with full CRUD capabilities.

# Create a new CRUD REST API
curl -X POST https://api.dodoapi.com/v1/apis
     -H "Content-Type: application/json"
     -H "x-access-token: ACCESS_TOKEN"
     -d '{"name": "API", 
          "columns":[ 
              {"name": "street", "type": "string"}, 
              {"name": "number", "type": "number"}, 
              {"name": "primary", "type": "boolean"}
          ]
        }'
# Add a new record



curl -X POST https://shared.dodoapi.com/{ACCOUNT}/{API}
     -H "Content-Type: application/json"
     -d '{"street": "Wall Str.", "number": 10, "primary": true}'



                        
# Edit existing record



curl -X PUT https://shared.dodoapi.com/{ACCOUNT}/{API}/{ID}
     -H "Content-Type: application/json"
     -d '{"street": "Wall Str.", "number": 10, "primary": false}'



                     
# Get single record



curl -k https://shared.dodoapi.com/{ACCOUNT}/{API}/{ID}
     -H "Content-Type: application/json"

     


                      
# Get filtered/sorted, paged list of records



curl -k https://shared.dodoapi.com/{ACCOUNT}/{API}
     -H "Content-Type: application/json"




                    
# Delete existing record


                    
curl -X DELETE https://shared.dodoapi.com/{ACCOUNT}/{API}/{ID}


     


                     

See documentation for details or use no code.

No Code - No Problem

Creating an API using no code is as simple as:

1. Pick an API name

2. Add required columns and their types

3. Add authorization if needed

And that's it! You are ready to go!

You get...

Immediate access and control over your API

Comprehensive documentation

Handy UI tools to view, generate and manipulate data

Logs view