id stringlengths 53 86 | api_name stringlengths 2 76 | api_description stringlengths 1 500 ⌀ | api_score float64 0 10 ⌀ | endpoint_name stringlengths 1 190 | endpoint_description stringlengths 0 500 | response_status_code int64 100 505 | response_summary stringlengths 1 68 ⌀ | response_json stringlengths 6 50k | response_json_schema stringlengths 14 150k |
|---|---|---|---|---|---|---|---|---|---|
6fc77832-22a8-42df-a020-3b76f66b0d53/44a7c62a-2d51-423e-b79c-46b520a04f7a/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Get user by id | Get any user by id | 200 | New Example | {"result": {"createdAt": "2021-10-12T02:44:44.000Z", "updateAt": "2021-10-12T03:00:12.000Z", "id": 3, "email": "test13@test.com", "emailToVerificate": "test13@test.com", "verificationAt": "2021-10-11T20:45:08.000Z", "password": "$2b$10$4yTa9epEmXUR./vzl.cte.i21c4qpRSBxq5U5F.968fgabbqGf2iq", "verificationCode": "8047", ... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"createdAt": {"type": "string"}, "updateAt": {"type": "string"}, "id": {"type": "integer"}, "email": {"type": "string"}, "emailToVerificate": {"type": "string"}, "verificationAt": {"type": "string"... |
6fc77832-22a8-42df-a020-3b76f66b0d53/ae277d97-2a45-479f-b99a-5a36e4472fca/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Change password | To change the password, you must have the verification code. | 200 | New Example | {"result": {"successful": true}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"successful": {"type": "boolean"}}, "required": ["successful"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/7e4b8312-15f0-4277-a8bb-25ec74efe9af/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Verify Owner | After creating the owner, you must verify it to activate it. | 404 | Response Example | {"result": {"id": 1}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"id": {"type": "integer"}}, "required": ["id"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/7e4b8312-15f0-4277-a8bb-25ec74efe9af/1/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Verify Owner | After creating the owner, you must verify it to activate it. | 200 | Response Example | {"result": {"id": 1}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"id": {"type": "integer"}}, "required": ["id"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/0493461d-ea7d-448d-905a-83f72d77bc14/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Request change password | In order to change your password, you must first generate a verification code. | 200 | New Example | {"result": {"successful": true, "verificationCodePassword": "6130"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"successful": {"type": "boolean"}, "verificationCodePassword": {"type": "string"}}, "required": ["successful", "verificationCodePassword"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/7b4fd5ae-ed31-4b98-8e5a-606a3efd0222/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Resend VerificationCode | To resend the verification code | 200 | Resend verification code | {"result": {"verificationCode": "5069"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"verificationCode": {"type": "string"}}, "required": ["verificationCode"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/138e3788-d85a-40f7-a2f8-c68546715d21/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Get list users | Get all your users | 200 | New Example | {"result": [{"id": 1, "email": "test11@test.com", "rol": {"id": 1, "description": "USER"}}, {"id": 3, "email": "test13@test.com", "rol": {"id": 1, "description": "USER"}}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "email": {"type": "string"}, "rol": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}}, "required"... |
6fc77832-22a8-42df-a020-3b76f66b0d53/c665a0ae-6294-4eb3-b724-75597d2f86d4/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Change user password | Change user password | 200 | New Example | {"result": {"successful": true}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"successful": {"type": "boolean"}}, "required": ["successful"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/a18e738f-a266-455c-8cd1-bfcfdc3f1b45/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Request User change password verify | After requiring the password change, you must verify it. | 200 | New Example | {"result": {"successful": true}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"successful": {"type": "boolean"}}, "required": ["successful"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/e5fe8efa-10e3-4fd9-a1bd-1622eb98b7bd/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Request User change password | Users can request change password | 200 | New Example | {"result": {"successful": true, "verificationCodePassword": "3801"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"successful": {"type": "boolean"}, "verificationCodePassword": {"type": "string"}}, "required": ["successful", "verificationCodePassword"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/1250f562-4cdf-4e58-b81e-28eb32655655/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Resend User VerificationCode | Resend verification code | 200 | New Example | {"result": {"verificationCode": "8461"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"verificationCode": {"type": "string"}}, "required": ["verificationCode"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/fe9b6f2a-3597-46b0-a743-73f383970c4a/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Verify user | To activate an already created user, it is necessary to verify. | 200 | New Example | {"result": {"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwicm9sIjoxLCJpYXQiOjE2MzM5ODI5MzcsImV4cCI6MTYzMzk4MzUzN30.y7oBrNhny4tJB1bn2O3in4vkjRSInbvJB6Xn9qrn4GM", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwicm9sIjoxLCJpYXQiOjE2MzM5ODI5Mzd9.FSNz_GDde27dPPjNF0ql3yiBJWlbnNqkNRdX9iV8fz... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"accessToken": {"type": "string"}, "refreshToken": {"type": "string"}, "id": {"type": "integer"}}, "required": ["accessToken", "id", "refreshToken"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/a23afcf7-6e00-4e6a-9dfd-6020042eccfd/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Create New Owner | You can create your owner account for manage your clients | 201 | Create owner response example | {"result": {"uuid": "34e4e763-35a4-4cf8-832f-545242173fa3", "verificationCode": "6343", "secret": "wZ7cKx9nfXPHtLJw5uN3WYK41HLOLOmFtnmRolPBvIY="}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"uuid": {"type": "string"}, "verificationCode": {"type": "string"}, "secret": {"type": "string"}}, "required": ["secret", "uuid", "verificationCode"]}}, "required": ["result"]} |
6fc77832-22a8-42df-a020-3b76f66b0d53/89b97067-4c2c-4120-8b14-530020032e4f/0/0 | Auth100 | Secure Auth API. Create users and manage them. JWT login system. Huge relationship DataBase with SQL. | 0.1 | Create New User | You can create a new user | 201 | New Example | {"result": {"uuid": "4aacfeb6-4bf7-4d15-8c3d-1d855ba02afd", "verificationCode": "1098"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"result": {"type": "object", "properties": {"uuid": {"type": "string"}, "verificationCode": {"type": "string"}}, "required": ["uuid", "verificationCode"]}}, "required": ["result"]} |
b2a8a98d-f0ad-476d-a044-a4d3bda7fe65/endpoint_50ff1d8b-fafc-4c9f-8f00-e2ecfec4f080/0/0 | FaiRESTdb | Online NoSQL database to store and retrieve your data. You can select a region where you would like to store your data from the version list. Storage is free, you pay only for the requests. | 0.2 | Link Existing User | This endpoint is only for users who created their account through faiRESTdb Web Client. Use this endpoint to link your RapidAPI account with faiRESTdb Web Client | 200 | New Example | {"message": "value", "status": "value"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"message": {"type": "string"}, "status": {"type": "string"}}, "required": ["message", "status"]} |
b2a8a98d-f0ad-476d-a044-a4d3bda7fe65/endpoint_d29a9877-efe0-42e8-91da-8f5dcc92865f/0/0 | FaiRESTdb | Online NoSQL database to store and retrieve your data. You can select a region where you would like to store your data from the version list. Storage is free, you pay only for the requests. | 0.2 | Register New User | Use this endpoint if you don't have an account in faiRESTdb Web Client. You can create an account with your email | 200 | New Example | {"message": "A temporary password is sent to the email you provided. Please login to https://app.fairestdb.com/user/login", "status": "registered"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"message": {"type": "string"}, "status": {"type": "string"}}, "required": ["message", "status"]} |
b2a8a98d-f0ad-476d-a044-a4d3bda7fe65/endpoint_057bde6a-2c75-4ffb-9a36-0b07c175e468/0/0 | FaiRESTdb | Online NoSQL database to store and retrieve your data. You can select a region where you would like to store your data from the version list. Storage is free, you pay only for the requests. | 0.2 | Get Databases | List all databases you created | 200 | Example_1 | [{"name": "database name"}] | {"items": {"properties": {"name": {"type": "string"}}, "type": "object"}, "type": "array"} |
8c06718a-8e0e-42a8-a696-7437b5f0c233/93cd177c-d633-477e-aa6a-5a1c2b6d0b08/0/0 | api.parsers.dev | SQL AST parsers and compilers for Postgresql and Snowflake dialects. Powered by holistic.dev | null | /api/parse/postgresql/ | This endpoint allows you to get Abstract Syntax Tree represented in your SQL-queries. You can parse any supported syntax (DDL, DML, DCL, TCL, and another specific syntax). | 200 | Example_1 | {"data": {"ast": [{"error": null, "query": {"CreateStmt": {"oncommit": 0, "relation": {"RangeVar": {"inh": true, "location": 13, "relname": "t", "relpersistence": "p"}}}}}, {"error": null, "query": {"SelectStmt": {"fromClause": [{"RangeVar": {"inh": true, "location": 14, "relname": "t", "relpersistence": "p"}}], "op": ... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"data": {"type": "object", "properties": {"ast": {"type": "array", "items": {"type": "object", "properties": {"error": {"type": "null"}, "query": {"type": "object", "properties": {"CreateStmt": {"type": "object", "properties": {"oncommit": {... |
8c06718a-8e0e-42a8-a696-7437b5f0c233/30c07773-89e9-472c-8735-461eba9ec99e/0/0 | api.parsers.dev | SQL AST parsers and compilers for Postgresql and Snowflake dialects. Powered by holistic.dev | null | /api/parse/snowflake/ | This endpoint allows you to get Abstract Syntax Tree represented in your SQL-queries. You can parse any supported syntax (DDL, DML, DCL, TCL, and another specific syntax). | 200 | Example_1 | {"data": {"ast": [{"error": {"location": 16}, "query": null, "sql": "CREATE TABLE t()"}, {"error": null, "query": {"SelectStmt": {"connectByClause": null, "distinctClause": false, "fromClause": [{"RangeVar": {"alias": null, "catalogname": null, "location": {"end": {"column": 16, "line": 1, "offset": 15}, "start": {"col... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"data": {"type": "object", "properties": {"ast": {"type": "array", "items": {"type": "object", "properties": {"error": {"anyOf": [{"type": "null"}, {"type": "object", "properties": {"location": {"type": "integer"}}, "required": ["location"]}... |
8c06718a-8e0e-42a8-a696-7437b5f0c233/1f96399d-17ad-4f81-bce7-4e9f9f50cf9e/0/0 | api.parsers.dev | SQL AST parsers and compilers for Postgresql and Snowflake dialects. Powered by holistic.dev | null | /api/compile/postgresql/(+ast) | This endpoint allows you to get a special object compiled based on your DDL or DML query. Because DML strictly depends on database schema (DDL), DML can be compiled to a special object, based on DDL only. | 200 | IR + AST | {"data": {"ast": {"ddl": [[{"error": null, "query": {"CreateStmt": {"oncommit": 0, "relation": {"RangeVar": {"inh": true, "location": 13, "relname": "t", "relpersistence": "p"}}, "tableElts": [{"ColumnDef": {"colname": "a", "is_local": true, "location": 16, "typeName": {"TypeName": {"location": 18, "names": [{"String":... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"data": {"type": "object", "properties": {"ast": {"type": "object", "properties": {"ddl": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"error": {"anyOf": [{"type": "null"}, {"type": "object", "prope... |
e92b28b7-ebbb-41c3-a6f2-e5e2bb7300bf/4e137bae-4abc-462d-9577-fc0c11816abb/0/0 | DRRM | DRRM Backend | 5.9 | userSignIn | 200 | null | {"accessToken": "eyJhbGciOiJIUzI1NiJ9.eyJfaWQiOiI2NDdiM2NjNzM4M2FmYzFkZjcwNGFlNWEiLCJlbWFpbCI6InRlc3Q4MjFAYXdkLmNvbS5waCIsInBhc3N3b3JkIjoiJDJiJDEwJHZiQ2J1N2hoS0YuVGF2dFVaQUljRGVIODJLSGViZnhsTjNJSFpKUWt2TDZpSklkS1ZGMXplIiwiZmlyc3ROYW1lIjoidGVzdCIsImxhc3ROYW1lIjoibXkgbGFzdG5hbWUiLCJjb250YWN0TnVtYmVyIjoiMDk5OTExOTE5OSIsIm... | {"type": "object"} | |
e92b28b7-ebbb-41c3-a6f2-e5e2bb7300bf/4e137bae-4abc-462d-9577-fc0c11816abb/0/1 | DRRM | DRRM Backend | 5.9 | userSignIn | 200 | null | {"accessToken": "eyJhbGciOiJIUzI1NiJ9.eyJfaWQiOiI2NGI2YTE5ZDRkZjUzZDk3OTBhNDQ5YzYiLCJlbWFpbCI6ImFkbWluQGFkbWluLmNvbSIsInBhc3N3b3JkIjoiJDJiJDEwJER2MmpTN2dqSGdGM1cyWWFiVi5IQS5sSld1ekEzR1ZZNnZ2UURPMEtQTlBPM1g3UW1sbEMyIiwiZmlyc3ROYW1lIjoiU3VwZXIiLCJsYXN0TmFtZSI6IkFkbWluIiwibWlkZGxlTmFtZSI6IlNlZWRlZCIsImNvbnRhY3ROdW1iZXIiOi... | {"type": "object"} | |
b09bce26-1253-489d-aad0-d945a111840a/cb4cc71c-9e08-4735-87ce-7ef43e764174/0/0 | HolidayAPI | Festivo Holiday API is a global bank holiday & observance JSON API platform. With support for 8000+ holidays in native languages in 250+ countries, we got you covered. Get started for FREE! | null | Holidays | Get public holidays and observances list | 200 | Example_1 | {"status": 200, "envelope": {"remote_ip": "18.197.117.10, 18.197.117.10,18.184.214.33", "request_url": "https://getfestivo.com/v1/holidays?country=US&year=2019&pretty=false&format=json", "signature": "ec572e9e-c99f-4df8-884e-6a57b19c3ed4"}, "requests": {"used": null, "available": null, "resets": null}, "message": "", "... | {"type": "object", "properties": {"status": {"type": "integer"}, "envelope": {"type": "object", "properties": {"remote_ip": {"type": "string"}, "request_url": {"type": "string"}, "signature": {"type": "string"}}}, "requests": {"type": "object", "properties": {"used": {"type": "null"}, "available": {"type": "null"}, "re... |
e7adeeca-8594-4dc4-9fbf-524a008401f8/c875da7f-5411-473f-a37d-bf9fbd1a5df2/0/0 | anonfiles | Upload unlimited files on anonymous server with 100% of security. | 0.1 | geFiletInfo | Get files information from id | 200 | Response | {"status": true, "data": {"file": {"url": {"short": "https://anonfiles.com/PdwcP7d6x0", "full": "https://anonfiles.com/PdwcP7d6x0/anonymous-logo_png"}, "metadata": {"size": {"bytes": 21264, "readable": "20.77 KB"}, "name": "anonymous-logo_png", "id": "PdwcP7d6x0"}}}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "boolean"}, "data": {"type": "object", "properties": {"file": {"type": "object", "properties": {"url": {"type": "object", "properties": {"short": {"type": "string"}, "full": {"type": "string"}}, "required": ["full", "short... |
e7adeeca-8594-4dc4-9fbf-524a008401f8/690ef916-e6c4-42d8-9072-331089b9016a/0/0 | anonfiles | Upload unlimited files on anonymous server with 100% of security. | 0.1 | uploadFile | Upload your file | 200 | New Example | {"status": true, "data": {"file": {"url": {"full": "https://anonfiles.com/d7zbP6dfxe/anonymous-logo_png", "short": "https://anonfiles.com/d7zbP6dfxe"}, "metadata": {"id": "d7zbP6dfxe", "name": "anonymous-logo.png", "size": {"bytes": 21264, "readable": "21.26 KB"}}}}} | {"status": true, "data": {"file": {"url": {"full": "https://anonfiles.com/d7zbP6dfxe/anonymous-logo_png", "short": "https://anonfiles.com/d7zbP6dfxe"}, "metadata": {"id": "d7zbP6dfxe", "name": "anonymous-logo.png", "size": {"bytes": 21264, "readable": "21.26 KB"}}}}} |
648c01e1-15c2-42e9-b89f-0b8a9c31d68d/48337f6a-fb64-4802-96c7-45841f13560a/0/0 | Camera Database | Camera bodies from several brands since 1996! We also have interchangable lenses. Old and new, all there. | 0.1 | /lenses | This API gets lenses. | 200 | null | {"items": [{"announced": "", "aperture_notes": "", "aperture_ring": true, "autofocus": true, "brand": "", "cipa_image_stabilization_rating": "", "colour": "", "created_at": "", "diameter": "", "distance_scale": true, "dof_scale": true, "elements": "", "filter_notes": "", "filter_thread": "", "focal_length": "", "focus_... | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"announced": {"type": "string"}, "aperture_notes": {"type": "string"}, "aperture_ring": {"type": "boolean"}, "autofocus": {"type": "boolean"}, "brand": {"type": "string"}, "cipa_image_stabilization_rating": {"type": ... |
648c01e1-15c2-42e9-b89f-0b8a9c31d68d/48337f6a-fb64-4802-96c7-45841f13560a/1/0 | Camera Database | Camera bodies from several brands since 1996! We also have interchangable lenses. Old and new, all there. | 0.1 | /lenses | This API gets lenses. | 500 | null | {"error_code": 0, "error_message": ""} | {"type": "object", "properties": {"error_code": {"type": "integer"}, "error_message": {"type": "string"}}} |
648c01e1-15c2-42e9-b89f-0b8a9c31d68d/48337f6a-fb64-4802-96c7-45841f13560a/2/0 | Camera Database | Camera bodies from several brands since 1996! We also have interchangable lenses. Old and new, all there. | 0.1 | /lenses | This API gets lenses. | 400 | null | {"error_code": 0, "error_message": ""} | {"type": "object", "properties": {"error_code": {"type": "integer"}, "error_message": {"type": "string"}}} |
648c01e1-15c2-42e9-b89f-0b8a9c31d68d/798e33ae-f981-4e99-a12a-a5f714c7ba31/0/0 | Camera Database | Camera bodies from several brands since 1996! We also have interchangable lenses. Old and new, all there. | 0.1 | /cameras | This API gets cameras. | 200 | null | {"items": [{"ae_bracketing": "", "announced": "", "aperture_priority": true, "articulated_lcd": "", "autofocus": "", "battery": "", "battery_description": "", "battery_life_cipa": "", "body_type": "", "boosted_iso_maximum": "", "boosted_iso_minimum": "", "brand": "", "built_in_flash": true, "cipa_image_stabilization_ra... | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"ae_bracketing": {"type": "string"}, "announced": {"type": "string"}, "aperture_priority": {"type": "boolean"}, "articulated_lcd": {"type": "string"}, "autofocus": {"type": "string"}, "battery": {"type": "string"}, "... |
648c01e1-15c2-42e9-b89f-0b8a9c31d68d/798e33ae-f981-4e99-a12a-a5f714c7ba31/1/0 | Camera Database | Camera bodies from several brands since 1996! We also have interchangable lenses. Old and new, all there. | 0.1 | /cameras | This API gets cameras. | 400 | null | {"error_code": 0, "error_message": ""} | {"type": "object", "properties": {"error_code": {"type": "integer"}, "error_message": {"type": "string"}}} |
648c01e1-15c2-42e9-b89f-0b8a9c31d68d/798e33ae-f981-4e99-a12a-a5f714c7ba31/2/0 | Camera Database | Camera bodies from several brands since 1996! We also have interchangable lenses. Old and new, all there. | 0.1 | /cameras | This API gets cameras. | 500 | null | {"error_code": 0, "error_message": ""} | {"type": "object", "properties": {"error_code": {"type": "integer"}, "error_message": {"type": "string"}}} |
76d9d8a8-3bab-4d36-9138-acd049fec18d/24f4ca08-c895-4a52-8928-b9799b4e784c/0/0 | TEAS | Managements about teas . | 0.2 | get a single type of tea | get one type of tea | 200 | New Example | {"status": "200", "data": {"teaName": "white tea", "price": "99"}} | {"type": "object", "properties": {"status": {"type": "string"}, "data": {"type": "object", "properties": {"teaName": {"type": "string"}, "price": {"type": "string"}}}}} |
76d9d8a8-3bab-4d36-9138-acd049fec18d/ad124bad-ea87-41e7-9b0f-8b7f97dbc7d7/0/0 | TEAS | Managements about teas . | 0.2 | get all teas | get all type of teas | 200 | New Example | {"status": "200", "data": [{"teaName": "white tea", "price": "99"}, {"teaName": "green tea", "price": "99"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"teaName": {"type": "string"}, "price": {"type": "string"}}, "required": ["price", "teaName"]}}}, "required": ["data", "status"]} |
76d9d8a8-3bab-4d36-9138-acd049fec18d/2830d089-2edf-4973-a67b-a09afa057657/0/0 | TEAS | Managements about teas . | 0.2 | create one type of tea | create a new tea | 201 | New Example | {"status": "201", "data": "CREATED"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "string"}, "data": {"type": "string"}}, "required": ["data", "status"]} |
76d9d8a8-3bab-4d36-9138-acd049fec18d/4d6b7432-8aa9-4bcb-b7fb-9389418627c6/0/0 | TEAS | Managements about teas . | 0.2 | update a type of tea | update operation | 201 | New Example | {"status": "201", "data": "CREATED"} | {"type": "object", "properties": {"status": {"type": "string"}, "data": {"type": "string"}}} |
76d9d8a8-3bab-4d36-9138-acd049fec18d/adfa2654-541f-420c-b871-bac8d87d6eed/0/0 | TEAS | Managements about teas . | 0.2 | delete a type of tea | delete operation | 204 | New Example | {"status": "204", "data": "NO CONTENT"} | {"type": "object", "properties": {"status": {"type": "string"}, "data": {"type": "string"}}} |
047a3937-27c7-48e4-b6a1-f6017fdf7d21/d25b68bb-e22f-4b98-be1b-88ffe55f8956/0/0 | Website Categorization | Website Categorization API lets you define the website category of a given URL. | 0 | Webiste Categorization (v1) | Define website category at once (v1) | 200 | Example | {"categories": ["Computer and electronics"], "domainName": "google.com", "websiteResponded": true} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "domainName": {"type": "string"}, "websiteResponded": {"type": "boolean"}}, "required": ["categories", "domainName", "websiteResponded"]} |
22e26f6e-ca09-4c59-8879-b9f072e3cb5c/ff817019-0221-40e4-bf09-77f0b9cfce6b/0/0 | Redis Web | Redis database on REST API | 6.8 | Del | Deleted a key along its value | 200 | New Example | {"data": {"status": 1, "keys": 0}, "error": null, "statusCode": 201} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"data": {"type": "object", "properties": {"status": {"type": "integer"}, "keys": {"type": "integer"}}, "required": ["keys", "status"]}, "error": {"type": "null"}, "statusCode": {"type": "integer"}}, "required": ["data", "error", "statusCode"... |
22e26f6e-ca09-4c59-8879-b9f072e3cb5c/99d508d2-9e85-43cc-8cb4-c359b7a8cfac/0/0 | Redis Web | Redis database on REST API | 6.8 | Get | Get a value by supplying a namespace and key | 200 | New Example | {"data": {"value": "This is a test value of testKey ", "ttl": -1}, "error": null, "statusCode": 200} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"data": {"type": "object", "properties": {"value": {"type": "string"}, "ttl": {"type": "integer"}}, "required": ["ttl", "value"]}, "error": {"type": "null"}, "statusCode": {"type": "integer"}}, "required": ["data", "error", "statusCode"]} |
22e26f6e-ca09-4c59-8879-b9f072e3cb5c/280ece0a-859d-4f64-a4cf-736d5a2087d3/0/0 | Redis Web | Redis database on REST API | 6.8 | Set | Set a value with namespace and key | 201 | New Example | {"data": {"status": "OK", "keys": 1}, "error": null, "statusCode": 201} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"data": {"type": "object", "properties": {"status": {"type": "string"}, "keys": {"type": "integer"}}, "required": ["keys", "status"]}, "error": {"type": "null"}, "statusCode": {"type": "integer"}}, "required": ["data", "error", "statusCode"]... |
8808fc20-b63b-4179-ab93-7a9e2c459acb/a8f7192c-f834-413b-bb8e-a4be2d17af05/0/0 | Emotion TheSaurus | Brainstorm physical signals and behaviors to express your character’s emotions in ways that fit their personality and emotional range. Essential tool for creative writing. | 0 | Get physical signals and behaviors | Get physical signals and behaviors from a specific emotion. | 200 | New Example | {"Emotion": "anger", "Physical Signals": ["Flaring nostrils", "Sweating", "Holding elbows wide from the body, chest thrust out", "Sweeping arm gestures", "Handling objects or people roughly", "A high chin", "Noisy breathing", "Legs that are planted wide", "Baring one\u2019s teeth", "Repetitive, sharp gestures (shaking ... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"Emotion": {"type": "string"}, "Physical Signals": {"type": "array", "items": {"type": "string"}}}, "required": ["Emotion", "Physical Signals"]} |
64e86eb8-111e-4171-bd38-748985df6c83/c65a6eeb-61a2-46e5-9a68-f0357894dba7/0/0 | Indian Trademarks Search API | TrademarksSearch API and Realtime Status Tracker | null | trademark-details-and-status-check | trademark-details-and-status-check | 200 | Result | {"application_number": 5000000, "word_mark": "SONALI FOOD", "class_number": 30, "status": "Opposed", "application_date": "2021-06-10", "country": "India", "image": "https://s3.ap-south-1.amazonaws.com/binbash.ai/media/trademarks/images/5000000.jpeg", "proprietor_name": "GREENSTARLINE UDYOG PRIVATE LIMITED Body Incorpor... | {"type": "object", "properties": {"application_number": {"type": "integer", "default": 0}, "word_mark": {"type": "string"}, "class_number": {"type": "integer", "default": 0}, "status": {"type": "string"}, "application_date": {"type": "string"}, "country": {"type": "string"}, "image": {"type": "string"}, "proprietor_nam... |
a63fb776-caa0-4e8e-b9b5-d1bcead34aeb/35008c53-4a46-4c68-828d-a9bb47648cb6/0/0 | Buildwith | Search domain built with | null | Built with | Search domain built with | 200 | Response | {"status": "200", "message": "success", "data": ["exitomag.ir", "vamos.in", "canggih.my", "dhakaclubltd.com", "investinquangninh.vn", "firstt.nl", "qijsadegh.ir", "kdlcuabien.com", "ariagol.ir", "apparelline.co.nz", "busverhuurtwente.nl", "helga.gr", "roghayehshahriari.ir", "groupecorsma.net", "youthpowervision.com", "... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "string"}, "message": {"type": "string"}, "data": {"type": "array", "items": {"type": "string"}}}, "required": ["data", "message", "status"]} |
1f77e25d-6681-4d34-b5b1-442af1e05e1d/eaf40aa3-a7c6-4071-b654-100473905407/0/0 | Key Value Store | A simple key-value store where you can put any JSON parseable data. | null | Get data by key | Returns the stored data for a given key.
If not result returns 404 error | 200 | New Example | {"hello": "world", "someData": true} | {"type": "object"} |
c6f7704d-06e4-4e7d-88ab-322f8e77cfc6/1b3cabf8-e82b-4ef9-830e-8accdc5609ab/3/0 | Taekwondo_Athlete_World_Ranking | Taekwondo_Athlete_World_Ranking | null | /GET_U-58_ATHLETE_RANKING |
Authentication: not required | 200 | null | [{"id": 0, "athlete_Rank": 0, "athlete_name": "", "athlete_GAL": "", "athlete_Country": "", "athlete_Points": 0}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer", "format": "int64", "description": "", "minimum": -9223372036854776000, "maximum": 9223372036854776000}, "athlete_Rank": {"type": "integer", "format": "int64", "description": "", "minimum": -9223372036854776000, "maximum": 92233720368... |
c6f7704d-06e4-4e7d-88ab-322f8e77cfc6/a2fc9b46-a88b-4e92-b7ed-429494c95cbd/3/0 | Taekwondo_Athlete_World_Ranking | Taekwondo_Athlete_World_Ranking | null | /GET_U-54_ATHLETE_RANKING |
Authentication: not required | 200 | null | [{"id": 0, "athlete_Rank": 0, "athlete_name": "", "athlete_GAL": "", "athlete_Country": "", "athlete_Points": 0}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer", "format": "int64", "description": "", "minimum": -9223372036854776000, "maximum": 9223372036854776000}, "athlete_Rank": {"type": "integer", "format": "int64", "description": "", "minimum": -9223372036854776000, "maximum": 92233720368... |
346bc230-0b97-4a13-a582-d4d7d16568d0/ce4c32a8-9335-47da-81bd-c8b9b780c1db/0/0 | Leetcode | Sends Leetcode questions | null | easy | Easy Leetcode Questions | 400 | New Example | {"key1": "value", "key2": "value"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}}, "required": ["key1", "key2"]} |
c8108f18-bad9-48db-9c16-d73be7e01d3e/16e07ec5-e8cd-4b3d-bc63-f126855effc0/0/0 | aaaa | aaa | 0.1 | Set API Version Base Url | Set a new base URL for a specified API version. | 201 | null | {"targetUrl": [], "apiversion": "", "createdAt": ""} | {"type": "object", "properties": {"targetUrl": {"type": "array", "items": {"type": "string"}}, "apiversion": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}}, "required": ["apiversion"]} |
c8108f18-bad9-48db-9c16-d73be7e01d3e/7c55555b-c060-4592-a439-ab650a12799b/0/0 | aaaa | aaa | 0.1 | Get Requesting User Details | Get detailed user information that is associated to the account | 200 | null | {"id": "", "type": "UNIDENTIFIED", "createdAt": "", "deletedAt": "", "updatedAt": "", "status": "ACTIVE", "externalId": "", "parents": [], "isOrgAdmin": true, "isEnvAdmin": true, "email": "", "mashapeId": "", "preventSubscribePublicApis": true, "seats": 0, "name": ""} | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"enum": ["UNIDENTIFIED", "USER", "TEAM", "ORGANIZATION"], "type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "statu... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/c19b6e05-5cc4-4b9e-8545-937c6e777788/0/0 | aaaa | aaa | 0.1 | Get Team | Get information about a specific Team, including the name, status, and description. | 200 | null | {"id": "", "mashapeId": "", "thumbnail": "", "name": "", "slugifiedName": "", "description": "", "createdAt": "", "updatedAt": "", "deletedAt": "", "status": "ACTIVE", "isOrgAdmin": true, "isEnvAdmin": true} | {"type": "object", "properties": {"id": {"type": "string"}, "mashapeId": {"type": "string"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "slugifiedName": {"type": "string"}, "description": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/e75aa13d-aeb4-4caa-af3c-5a7af82c986d/0/0 | aaaa | aaa | 0.1 | Get All Teams | Get information about all of the Teams in a specific Organization, including the name, status, and description for each Team. | 200 | null | [{"id": "", "mashapeId": "", "thumbnail": "", "name": "", "slugifiedName": "", "description": "", "createdAt": "", "updatedAt": "", "deletedAt": "", "status": "ACTIVE", "isOrgAdmin": true, "isEnvAdmin": true}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "mashapeId": {"type": "string"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "slugifiedName": {"type": "string"}, "description": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt"... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/994d5b30-956e-46aa-b6df-6733f8c0fc80/0/0 | aaaa | aaa | 0.1 | Get all Organizations | Get Organization information for all of the Organizations you have access to. Organization information includes the associated email, the number of seats, the Organization name, the status, and more. | 200 | null | [{"id": "", "email": "", "preventSubscribePublicApis": true, "seats": 0, "mashapeId": "", "thumbnail": "", "name": "", "slugifiedName": "", "description": "", "createdAt": "", "updatedAt": "", "deletedAt": "", "status": "ACTIVE", "isOrgAdmin": true, "isEnvAdmin": true}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "email": {"type": "string"}, "preventSubscribePublicApis": {"type": "boolean"}, "seats": {"type": "number"}, "mashapeId": {"type": "string"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "slugifiedName": {"type": "str... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/7fbc30e2-975a-4457-9ba4-687f66278199/0/0 | aaaa | aaa | 0.1 | Get Organization Audit Log | Get the audit trail for a specified Organization. Information in the audit trail includes details like eventName, user, attributes and more. | 200 | null | {"total": 0, "log": [{"id": "", "time": "", "actorRole": "", "action": "", "eventName": "", "actor": {}, "user": {}, "activeEntity": {}, "attributes": {}, "params": {}, "geo": {}}]} | {"type": "object", "properties": {"total": {"type": "number"}, "log": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "time": {"format": "date-time", "type": "string"}, "actorRole": {"type": "string"}, "action": {"type": "string"}, "eventName": {"type": "string"}, "actor": {"type"... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/ef86bd15-9e52-4a72-af2f-bfcd9fada457/0/0 | aaaa | aaa | 0.1 | Get API Analytics | Get analytics for a specific API that exists within your environment | 200 | null | [{"apiVersion": "", "endpointsData": [{"endpointHash": "", "data": [{"apiversion": "", "apiid": "", "endpointHash": "", "requests": 0, "errors": 0, "latency": 0, "date": ""}]}]}] | {"type": "array", "items": {"type": "object", "properties": {"apiVersion": {"type": "string"}, "endpointsData": {"type": "array", "items": {"type": "object", "properties": {"endpointHash": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"apiversion": {"type": "string"}, "apiid":... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/abe8e7d8-951c-4f8b-b7c3-eba9af84ff0b/0/0 | aaaa | aaa | 0.1 | Get all Categories | Get all the Categories that exist in your environment | 200 | null | [{"id": "", "longDescription": "", "name": "", "shortDescription": "", "slugifiedName": "", "status": "", "type": "", "createdAt": "", "updatedAt": "", "weight": 0}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "longDescription": {"type": "string"}, "name": {"type": "string"}, "shortDescription": {"type": "string"}, "slugifiedName": {"type": "string"}, "status": {"type": "string"}, "type": {"type": "string"}, "createdAt": {"format": "date-t... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/e42b2393-1d84-42fa-b82c-946a93a25746/0/0 | aaaa | aaa | 0.1 | Get API Current Version | Get information for the current version of a specified API, including the id, name, and status. | 200 | null | {"api": "", "createdAt": "", "updatedAt": "", "current": true, "id": "", "name": "", "status": "ACTIVE", "versionStatus": "active"} | {"type": "object", "properties": {"api": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "current": {"type": "boolean"}, "id": {"type": "string"}, "name": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, ... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/d3b9ed16-0a2a-4a9d-96b5-55b7956caff3/0/0 | aaaa | aaa | 0.1 | Get all Api Developers | Get all Api Developers | 200 | null | [{"id": "", "apiId": "", "blocked": true, "createdAt": "", "updatedAt": "", "deletedAt": "", "developer": "", "status": "ACTIVE", "type": ""}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "apiId": {"type": "string"}, "blocked": {"type": "boolean"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "dev... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/2c671370-8633-4bf2-aad3-01c5227e4ed9/0/0 | aaaa | aaa | 0.1 | Get API Subscriptions | Get information about all of the subscriptions to a specified API. | 200 | null | [{"id": "", "userId": "", "mashapeId": "", "apiId": "", "apiVersionId": "", "stripeId": "", "customToken": "", "billingPlanVersionId": "", "status": "", "canceled": true, "autocanceled": true, "type": "", "createdAt": "", "canceledAt": "", "updatedAt": "", "deletedAt": "", "parentId": "", "isBlocked": true}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "userId": {"type": "string"}, "mashapeId": {"type": "string"}, "apiId": {"type": "string"}, "apiVersionId": {"type": "string"}, "stripeId": {"type": "string"}, "customToken": {"type": "string"}, "billingPlanVersionId": {"type": "stri... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/b1a22572-7d21-4b82-b1dc-15be1a44c455/0/0 | aaaa | aaa | 0.1 | Update API Version | Update information for a specified version of an API. | 200 | null | {"api": "", "createdAt": "", "updatedAt": "", "current": true, "id": "", "name": "", "status": "ACTIVE", "versionStatus": "active"} | {"type": "object", "properties": {"api": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "current": {"type": "boolean"}, "id": {"type": "string"}, "name": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, ... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/b6436e5a-bf89-417e-b91e-ed14fc69cdaa/0/0 | aaaa | aaa | 0.1 | Get API Version | Get information for a specified version of an API, including the id, name, and status. | 200 | null | {"api": "", "createdAt": "", "updatedAt": "", "current": true, "id": "", "name": "", "status": "ACTIVE", "versionStatus": "active"} | {"type": "object", "properties": {"api": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "current": {"type": "boolean"}, "id": {"type": "string"}, "name": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, ... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/3acdf524-973d-4116-899a-b750d2a4da24/0/0 | aaaa | aaa | 0.1 | Get API Log Details | Get API logs details information, including endpoint, http method, payload and more. | 200 | null | {"apiId": "", "versionId": "", "endpoint": "", "httpMethod": "", "httpStatus": 0, "originIp": "", "reqBodySize": 0, "requestId": "", "resBodySize": 0, "payload": {"reqParams": {}, "reqHeaders": {}, "resHeaders": {}, "reqBody": {}, "resBody": {}, "saveRequestQueryParametersLogging": true, "saveRequestHeadersLogging": tr... | {"type": "object", "properties": {"apiId": {"type": "string"}, "versionId": {"type": "string"}, "endpoint": {"type": "string"}, "httpMethod": {"type": "string"}, "httpStatus": {"type": "number"}, "originIp": {"type": "string"}, "reqBodySize": {"type": "number"}, "requestId": {"type": "string"}, "resBodySize": {"type": ... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/e4c00061-738f-4e41-975f-28cc32648727/0/0 | aaaa | aaa | 0.1 | Get API Subscription | Get information about a specific subscription to a specified API. | 200 | null | {"id": "", "userId": "", "mashapeId": "", "apiId": "", "apiVersionId": "", "stripeId": "", "customToken": "", "billingPlanVersionId": "", "status": "", "canceled": true, "autocanceled": true, "type": "", "createdAt": "", "canceledAt": "", "updatedAt": "", "deletedAt": "", "parentId": "", "isBlocked": true} | {"type": "object", "properties": {"id": {"type": "string"}, "userId": {"type": "string"}, "mashapeId": {"type": "string"}, "apiId": {"type": "string"}, "apiVersionId": {"type": "string"}, "stripeId": {"type": "string"}, "customToken": {"type": "string"}, "billingPlanVersionId": {"type": "string"}, "status": {"type": "s... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/717a1d6f-8ae8-4848-968d-ae7fd6a877d5/0/0 | aaaa | aaa | 0.1 | Get API | Get information on specified API, including category, id, and name | 200 | null | {"category": "", "categoryId": "", "createdAt": "", "id": "", "externalCustomId": "", "name": "", "ownerId": "", "slugifiedName": "", "status": "", "type": "", "useHttpProxy": true, "visibility": "PUBLIC", "gateways": [], "description": "", "longDescription": "", "websiteUrl": "", "updatedAt": "", "pricing": "PAID"} | {"type": "object", "properties": {"category": {"type": "string"}, "categoryId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "id": {"type": "string"}, "externalCustomId": {"type": ["string", "null"]}, "name": {"type": "string"}, "ownerId": {"type": "string"}, "slugifiedName": {"type": "st... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/098d1ac0-9b42-4158-ba66-7f17609bac7b/0/0 | aaaa | aaa | 0.1 | Get API Logs | Get all of the logs for a particular API. | 200 | null | {"data": [{"apiId": "", "endpoint": "", "httpMethod": "", "httpStatus": 0, "originIp": "", "reqBodySize": 0, "requestId": "", "originCountry": "", "resBodySize": 0, "apiLatency": 0, "callTime": "", "versionId": ""}], "total": 0} | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"apiId": {"type": "string"}, "endpoint": {"type": "string"}, "httpMethod": {"type": "string"}, "httpStatus": {"type": "number"}, "originIp": {"type": "string"}, "reqBodySize": {"type": "number"}, "requestId": {"type":... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/38e8598d-d001-4e67-9dc9-6b74435c7d5f/0/0 | aaaa | aaa | 0.1 | Get API by external custom ID | Get information on specified API based on a given custom external ID, including category, id, and name | 200 | null | {"category": "", "categoryId": "", "createdAt": "", "id": "", "externalCustomId": "", "name": "", "ownerId": "", "slugifiedName": "", "status": "", "type": "", "useHttpProxy": true, "visibility": "PUBLIC", "gateways": [], "description": "", "longDescription": "", "websiteUrl": "", "updatedAt": "", "pricing": "PAID"} | {"type": "object", "properties": {"category": {"type": "string"}, "categoryId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "id": {"type": "string"}, "externalCustomId": {"type": ["string", "null"]}, "name": {"type": "string"}, "ownerId": {"type": "string"}, "slugifiedName": {"type": "st... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/47530293-99ec-4cb2-ad32-f3e3b380f932/0/0 | aaaa | aaa | 0.1 | Get All API Versions | Get all the versions (and their corresponding information) that exist for a specified API. | 200 | null | [{"api": "", "createdAt": "", "updatedAt": "", "current": true, "id": "", "name": "", "status": "ACTIVE", "versionStatus": "active"}] | {"type": "array", "items": {"type": "object", "properties": {"api": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "current": {"type": "boolean"}, "id": {"type": "string"}, "name": {"type": "string"}, "status": {"enum": ["ACTIVE", "DEL... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/8a59b6bf-7d3e-41de-aa52-73d24a879d87/0/0 | aaaa | aaa | 0.1 | Get All APIs | Get information for all APIs, including the id, name, and status. | 200 | null | [{"category": "", "categoryId": "", "createdAt": "", "id": "", "externalCustomId": "", "name": "", "ownerId": "", "slugifiedName": "", "status": "", "type": "", "useHttpProxy": true, "visibility": "PUBLIC", "gateways": [], "description": "", "longDescription": "", "websiteUrl": "", "updatedAt": "", "pricing": "PAID"}] | {"type": "array", "items": {"type": "object", "properties": {"category": {"type": "string"}, "categoryId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "id": {"type": "string"}, "externalCustomId": {"type": ["string", "null"]}, "name": {"type": "string"}, "ownerId": {"type": "string"}, "s... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/6f8db7ab-fd48-46a4-9f67-0a22cf6a4ca3/0/0 | aaaa | aaa | 0.1 | Create API | Create a new API. | 201 | null | {"id": "", "slugifiedName": ""} | {"type": "object", "properties": {"id": {"type": "string"}, "slugifiedName": {"type": "string"}}, "required": ["id", "slugifiedName"]} |
c8108f18-bad9-48db-9c16-d73be7e01d3e/7d5f6f3d-8f65-4b63-a7e2-9d24e2a758a6/0/0 | aaaa | aaa | 0.1 | Update API | Update an existing API | 200 | null | {"category": "", "categoryId": "", "createdAt": "", "id": "", "externalCustomId": "", "name": "", "ownerId": "", "slugifiedName": "", "status": "", "type": "", "useHttpProxy": true, "visibility": "PUBLIC", "gateways": [], "description": "", "longDescription": "", "websiteUrl": "", "updatedAt": "", "pricing": "PAID"} | {"type": "object", "properties": {"category": {"type": "string"}, "categoryId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "id": {"type": "string"}, "externalCustomId": {"type": ["string", "null"]}, "name": {"type": "string"}, "ownerId": {"type": "string"}, "slugifiedName": {"type": "st... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/5b32a55e-da7c-4c45-acbd-165c9415b78e/0/0 | aaaa | aaa | 0.1 | Get Multiple Users | Get information on all or multiple users in your Enterprise Hub. Use the optional parameters to return a more narrow range of users.The information returned for each user includes userId , status, email, lastActive, and more. | 200 | null | [{"id": "", "status": "ACTIVE", "mashapeId": "", "email": "", "emailPublic": true, "password": "", "resetPasswordToken": true, "resetPasswordExpires": true, "resetPasswordTokenUsed": true, "gmail": "", "googleToken": "", "githubUsername": "", "githubToken": "", "rakutenToken": "", "githubUrl": "", "githubUrlPublic": tr... | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "mashapeId": {"type": "string"}, "email": {"type": "string"}, "emailPublic": {"type": "boolean"}, "password": {"type": "string"}, "resetPasswordToken": {"type": "boolean"},... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/77334937-18f7-4090-bb32-2de83372f4d7/0/0 | aaaa | aaa | 0.1 | Get Single User | Get information on a specified user, including the email, name, and thumbnail. The endpoint also indicates if the user has two factor authentication methods enabled. | 200 | null | {"id": "", "status": "ACTIVE", "mashapeId": "", "email": "", "emailPublic": true, "password": "", "resetPasswordToken": true, "resetPasswordExpires": true, "resetPasswordTokenUsed": true, "gmail": "", "googleToken": "", "githubUsername": "", "githubToken": "", "rakutenToken": "", "githubUrl": "", "githubUrlPublic": tru... | {"type": "object", "properties": {"id": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "mashapeId": {"type": "string"}, "email": {"type": "string"}, "emailPublic": {"type": "boolean"}, "password": {"type": "string"}, "resetPasswordToken": {"type": "boolean"}, "resetPasswordExpires": {"... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/797b6f86-9770-4844-abd6-7711fefa60f3/0/0 | aaaa | aaa | 0.1 | Get User Subscription | Get info on an existing subscription | 200 | null | {"id": "", "userId": "", "mashapeId": "", "apiId": "", "apiVersionId": "", "stripeId": "", "customToken": "", "billingPlanVersionId": "", "status": "", "canceled": true, "autocanceled": true, "type": "", "createdAt": "", "canceledAt": "", "updatedAt": "", "deletedAt": "", "parentId": "", "isBlocked": true} | {"type": "object", "properties": {"id": {"type": "string"}, "userId": {"type": "string"}, "mashapeId": {"type": "string"}, "apiId": {"type": "string"}, "apiVersionId": {"type": "string"}, "stripeId": {"type": "string"}, "customToken": {"type": "string"}, "billingPlanVersionId": {"type": "string"}, "status": {"type": "s... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/346e768c-28d0-4b04-96d1-d1b49afd2ada/0/0 | aaaa | aaa | 0.1 | Get User Subscription Analytics | Get analytics on an API that you are subscribed to | 201 | null | [{"date": "", "data": [{"apiversion": "", "apiid": "", "endpointHash": "", "requests": 0, "errors": 0, "latency": 0, "date": ""}]}] | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"apiversion": {"type": "string"}, "apiid": {"type": "string"}, "endpointHash": {"type": "string"}, "requests": {"type": "number"}, "errors": {"type": "number"}, "... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/d5e9ef9d-c683-469c-a67b-d0961f35b67e/0/0 | aaaa | aaa | 0.1 | Get All User Subscriptions | Get a list of all your subscriptions | 200 | null | [{"id": "", "userId": "", "mashapeId": "", "apiId": "", "apiVersionId": "", "stripeId": "", "customToken": "", "billingPlanVersionId": "", "status": "", "canceled": true, "autocanceled": true, "type": "", "createdAt": "", "canceledAt": "", "updatedAt": "", "deletedAt": "", "parentId": "", "isBlocked": true}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "userId": {"type": "string"}, "mashapeId": {"type": "string"}, "apiId": {"type": "string"}, "apiVersionId": {"type": "string"}, "stripeId": {"type": "string"}, "customToken": {"type": "string"}, "billingPlanVersionId": {"type": "stri... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/67b0955e-6f02-44d6-a6a7-922250e74fea/0/0 | aaaa | aaa | 0.1 | Get all Transactions | Get all Transactions | 200 | null | [{"id": 0, "stripeId": "", "chargeId": "", "apiId": "", "apiVersionId": "", "billingPlanVersionId": "", "userId": 0, "mashapeId": "", "subscriptionId": "", "totalAmount": 0, "additionalAmount": 0, "refunded": 0, "paid": 0, "paidout": "", "payoutAmount": 0, "status": "", "periodStart": "", "periodEnd": "", "invoiceLink"... | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "number"}, "stripeId": {"type": "string"}, "chargeId": {"type": "string"}, "apiId": {"type": "string"}, "apiVersionId": {"type": "string"}, "billingPlanVersionId": {"type": "string"}, "userId": {"type": "number"}, "mashapeId": {"type": "string"... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/8c18ac61-3c9b-4cc9-8a46-0944ffb7df32/0/0 | aaaa | aaa | 0.1 | Get all Roles | Get all Roles | 200 | null | [{"id": "", "name": "", "description": "", "isDefault": true, "roleLevel": "", "isBasicRole": true, "permissions": [{"id": "", "key": "", "displayName": "", "permissionLevel": "", "description": "", "dependsOn": "", "rolePermission": {"granted": true, "readOnly": true}}]}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "isDefault": {"type": "boolean"}, "roleLevel": {"type": "string"}, "isBasicRole": {"type": "boolean"}, "permissions": {"type": "array", "items": {"type": "object", "prope... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/68758d27-13ea-4402-bf03-555797f3a8a1/0/0 | aaaa | aaa | 0.1 | Get Api Tag | Get Tag information for a specific API | 200 | null | {"id": "", "apiId": "", "createdAt": "", "status": "ACTIVE", "tagDefinitionId": "", "type": "", "value": ""} | {"type": "object", "properties": {"id": {"type": "string"}, "apiId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "tagDefinitionId": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "string"}}, "required": ["id"... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/49d11275-6102-485c-8814-0e62d88f4eba/0/0 | aaaa | aaa | 0.1 | Get all Organizations (Environment Admin) | Get Organization information for all of the Organizations in your Enterprise Hub.Organization information includes the associated email, the number of seats, the Organization name, the status, and more. | 200 | null | [{"id": "", "email": "", "preventSubscribePublicApis": true, "seats": 0, "mashapeId": "", "thumbnail": "", "name": "", "slugifiedName": "", "description": "", "createdAt": "", "updatedAt": "", "deletedAt": "", "status": "ACTIVE", "isOrgAdmin": true, "isEnvAdmin": true}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "email": {"type": "string"}, "preventSubscribePublicApis": {"type": "boolean"}, "seats": {"type": "number"}, "mashapeId": {"type": "string"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "slugifiedName": {"type": "str... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/fd8a11cc-6e28-4c4d-ac3b-0a819a2edeea/0/0 | aaaa | aaa | 0.1 | Get all Api Tags | Get information about all of the tags associated with an API, including the tagId. | 200 | null | [{"id": "", "apiId": "", "createdAt": "", "status": "ACTIVE", "tagDefinitionId": "", "type": "", "value": ""}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "apiId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "tagDefinitionId": {"type": "string"}, "type": {"type": "string"}, "value": {"type": "s... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/a90bf476-8cf6-4936-ac46-15e67b4ffbad/0/0 | aaaa | aaa | 0.1 | Get all Developers for a Billing Plan | Get all Developers for a Billing Plan | 200 | null | [{"id": "", "billingPlanId": "", "mashapeId": "", "status": "ACTIVE", "updatedAt": "", "createdAt": "", "deletedAt": "", "userId": ""}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "billingPlanId": {"type": "string"}, "mashapeId": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "createdAt": {"format": "date-time", "type": "... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/094325dd-615f-45e2-be11-a581102e2b36/0/0 | aaaa | aaa | 0.1 | Get all Collections | Get a list of all of the collections that exist within your environment | 200 | null | [{"id": "", "name": "", "slugifiedName": "", "weight": 0, "shortDescription": "", "longDescription": "", "thumbnail": "", "apis": [], "blogPostId": "", "orderCollectionItems": [], "createdAt": "", "updatedAt": "", "deletedAt": "", "ownerId": "", "orgId": "", "orgName": "", "collectionType": "", "status": "ACTIVE"}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "slugifiedName": {"type": "string"}, "weight": {"type": "number"}, "shortDescription": {"type": "string"}, "longDescription": {"type": "string"}, "thumbnail": {"type": "string"}, "apis": {"type": "array", ... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/3ed62fed-5d6c-4657-b9d5-a65a24f46308/0/0 | aaaa | aaa | 0.1 | Create Endpoint | Create Endpoint | 201 | null | {"createdAt": "", "updatedAt": "", "deletedAt": "", "id": "", "name": "", "description": "", "apiVersion": "", "code": 0, "group": "", "route": "", "endpointHash": "", "response": "", "payload": "", "method": "", "displayResponse": true, "isGraphQL": true, "isMockResponse": true, "mockResponseId": "", "externalDocs": {... | {"type": "object", "properties": {"createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "apiVersion": {"type": "strin... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/d9efb6ec-85dd-435e-9f64-9c8047df407f/0/0 | aaaa | aaa | 0.1 | Get Collection | Get information on a specific collection within your environment | 200 | null | {"id": "", "name": "", "slugifiedName": "", "weight": 0, "shortDescription": "", "longDescription": "", "thumbnail": "", "apis": [], "blogPostId": "", "orderCollectionItems": [], "createdAt": "", "updatedAt": "", "deletedAt": "", "ownerId": "", "orgId": "", "orgName": "", "collectionType": "", "status": "ACTIVE"} | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "slugifiedName": {"type": "string"}, "weight": {"type": "number"}, "shortDescription": {"type": "string"}, "longDescription": {"type": "string"}, "thumbnail": {"type": "string"}, "apis": {"type": "array", "items": {"type": "string"}... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/1b98469f-5092-48c4-ab3f-c60ef24732e3/0/0 | aaaa | aaa | 0.1 | Get all API Docs | Get information about all of the docs associated with an API, including the docId. | 200 | null | [{"id": "", "apiId": "", "createdAt": "", "index": 0, "status": "", "text": "", "textModified": true, "type": ""}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "apiId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "index": {"type": "number"}, "status": {"type": "string"}, "text": {"type": "string"}, "textModified": {"type": "boolean"}, "type": {"type": "string... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/981965b8-2475-419b-ba2b-f94a99505c02/0/0 | aaaa | aaa | 0.1 | Get all Endpoints | Get all Endpoints | 200 | null | [{"createdAt": "", "updatedAt": "", "deletedAt": "", "id": "", "name": "", "description": "", "apiVersion": "", "code": 0, "group": "", "route": "", "endpointHash": "", "response": "", "payload": "", "method": "", "displayResponse": true, "isGraphQL": true, "isMockResponse": true, "mockResponseId": "", "externalDocs": ... | {"type": "array", "items": {"type": "object", "properties": {"createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "a... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/ef8149ba-397e-4596-9458-9137aedd2293/0/0 | aaaa | aaa | 0.1 | Get all Entity Roles | Get all Entity Roles | 200 | null | [{"id": "", "entityId": "", "roleId": "", "orgId": "", "parentId": "", "role": {"id": "", "name": "", "description": "", "isDefault": true, "roleLevel": "", "isBasicRole": true, "permissions": [{"id": "", "key": "", "displayName": "", "permissionLevel": "", "description": "", "dependsOn": "", "rolePermission": {"grante... | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "entityId": {"type": "string"}, "roleId": {"type": "string"}, "orgId": {"type": "string"}, "parentId": {"type": "string"}, "role": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description":... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/71bb2390-a72e-4a9d-b2f5-dec0518cbaf1/0/0 | aaaa | aaa | 0.1 | Get Billing Plan Version | Get Billing Plan Version | 200 | null | {"id": "", "billingPlan": "", "createdAt": "", "current": true, "name": "", "period": "", "price": 0, "pricing": "FREE", "status": "ACTIVE", "type": "", "visibility": "PUBLIC"} | {"type": "object", "properties": {"id": {"type": "string"}, "billingPlan": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "current": {"type": "boolean"}, "name": {"type": "string"}, "period": {"type": "string"}, "price": {"type": "number"}, "pricing": {"enum": ["FREE", "FREEMIUM", "PAID", "... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/9ef571a8-7b02-4fb7-8648-720bcd501f2f/0/0 | aaaa | aaa | 0.1 | Get all Billing Plans | Get all Billing Plans | 200 | null | [{"id": "", "name": "", "apiversion": "", "createdAt": "", "hidden": true, "legalAccountId": "", "legalDocumentId": "", "shouldRequestApproval": true, "requestApprovalQuestion": "", "slugifiedName": "", "status": "ACTIVE", "targetGroup": "", "type": "", "visibility": "PUBLIC", "isStudent": true}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "apiversion": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "hidden": {"type": "boolean"}, "legalAccountId": {"type": "string"}, "legalDocumentId": {"type": "string"}, "should... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/f644575a-e262-4e1e-9afe-12fa310ec6c5/0/0 | aaaa | aaa | 0.1 | Get Endpoint | Get Endpoint | 200 | null | {"createdAt": "", "updatedAt": "", "deletedAt": "", "id": "", "name": "", "description": "", "apiVersion": "", "code": 0, "group": "", "route": "", "endpointHash": "", "response": "", "payload": "", "method": "", "displayResponse": true, "isGraphQL": true, "isMockResponse": true, "mockResponseId": "", "externalDocs": {... | {"type": "object", "properties": {"createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "apiVersion": {"type": "strin... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/bdff9cd4-099d-4de0-8c98-88f385cdb94e/0/0 | aaaa | aaa | 0.1 | Get Tag Definition | Get information on a specific Tag within your environment | 200 | null | {"id": "", "apiCount": 0, "color": "", "createdAt": "", "description": "", "editableByProvider": true, "forceEnumValidation": true, "isVisible": true, "name": "", "requiredOnAPI": true, "showTagName": true, "updatedAt": "", "values": [], "status": "ACTIVE"} | {"type": "object", "properties": {"id": {"type": "string"}, "apiCount": {"type": "number"}, "color": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "description": {"type": "string"}, "editableByProvider": {"type": "boolean"}, "forceEnumValidation": {"type": "boolean"}, "isVisible": {"type":... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/6c31e801-b98b-466a-a98a-5a9261d2e7d2/0/0 | aaaa | aaa | 0.1 | Get all Tag Definitions | Get information on all the Tags within your environment | 200 | null | [{"id": "", "apiCount": 0, "color": "", "createdAt": "", "description": "", "editableByProvider": true, "forceEnumValidation": true, "isVisible": true, "name": "", "requiredOnAPI": true, "showTagName": true, "updatedAt": "", "values": [], "status": "ACTIVE"}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "apiCount": {"type": "number"}, "color": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "description": {"type": "string"}, "editableByProvider": {"type": "boolean"}, "forceEnumValidation": {"type": "boole... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/01c0b59d-7084-40fa-a685-a84e483f1385/0/0 | aaaa | aaa | 0.1 | Get all Gateways | Get all Gateways | 200 | null | [{"id": "", "apiGatewayCodeTemplateId": "", "dns": "", "ip": "", "version": "", "deploymentKey": "", "type": "", "serviceStatus": "", "lastActive": "", "status": "ACTIVE", "createdAt": ""}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "apiGatewayCodeTemplateId": {"type": "string"}, "dns": {"type": "string"}, "ip": {"type": "string"}, "version": {"type": "string"}, "deploymentKey": {"type": "string"}, "type": {"type": "string"}, "serviceStatus": {"type": "string"},... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/8509bccc-57e4-4931-9373-0e4203df0217/0/0 | aaaa | aaa | 0.1 | Get All Apps | Get information on all of the Apps associated with an account. | 200 | null | [{"id": "", "ownerId": "", "projectId": "", "createdAt": "", "updatedAt": ""}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "ownerId": {"type": "string"}, "projectId": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}}, "required": ["id", "ownerId", "projectId"]}} |
c8108f18-bad9-48db-9c16-d73be7e01d3e/acc0e64a-21f6-46dd-87bf-6f7c1bac10e3/0/0 | aaaa | aaa | 0.1 | Get Team Users | Get information about all of the users that belong to a specific team. Returned user information includes the user id, email, username, and lastActive. | 200 | null | [{"id": "", "status": "ACTIVE", "mashapeId": "", "email": "", "emailPublic": true, "password": "", "resetPasswordToken": true, "resetPasswordExpires": true, "resetPasswordTokenUsed": true, "gmail": "", "googleToken": "", "githubUsername": "", "githubToken": "", "rakutenToken": "", "githubUrl": "", "githubUrlPublic": tr... | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "mashapeId": {"type": "string"}, "email": {"type": "string"}, "emailPublic": {"type": "boolean"}, "password": {"type": "string"}, "resetPasswordToken": {"type": "boolean"},... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/9eb0fecb-f635-4be4-8afb-874fa0d4e84a/0/0 | aaaa | aaa | 0.1 | Get Category | Get information on a specific Category within your environment | 200 | null | {"id": "", "longDescription": "", "name": "", "shortDescription": "", "slugifiedName": "", "status": "", "type": "", "createdAt": "", "updatedAt": "", "weight": 0} | {"type": "object", "properties": {"id": {"type": "string"}, "longDescription": {"type": "string"}, "name": {"type": "string"}, "shortDescription": {"type": "string"}, "slugifiedName": {"type": "string"}, "status": {"type": "string"}, "type": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "u... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/1009c7b1-ffff-46d0-9636-572476f8b997/0/0 | aaaa | aaa | 0.1 | Get App Analytics | Get analytics for a specified app. You can specify from and to in order to fine tune the date range.
resolution can be set to seconds, minutes, or hours. | 201 | null | [{"apiId": "", "data": [{"apiversion": "", "apiid": "", "endpointHash": "", "requests": 0, "errors": 0, "latency": 0, "date": ""}]}] | {"type": "array", "items": {"type": "object", "properties": {"apiId": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"apiversion": {"type": "string"}, "apiid": {"type": "string"}, "endpointHash": {"type": "string"}, "requests": {"type": "number"}, "errors": {"type": "number"}, ... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/674918a3-47fb-4122-8285-8534929c4e70/0/0 | aaaa | aaa | 0.1 | Get App | Get information about a specified app, including the name, description, and thumbnail. | 200 | null | {"id": "", "mashapeId": "", "ownerId": "", "name": "", "description": "", "thumbnail": "", "favorite": true, "createdAt": "", "updatedAt": ""} | {"type": "object", "properties": {"id": {"type": "string"}, "mashapeId": {"type": "string"}, "ownerId": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "thumbnail": {"type": "string"}, "favorite": {"type": "boolean"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt"... |
c8108f18-bad9-48db-9c16-d73be7e01d3e/762c6bd9-7aa1-488d-b32e-eaa81b0aa558/0/0 | aaaa | aaa | 0.1 | Get Organization | Get a specified Organization's information, including the associated email, the number of seats, the Organization name, the status, and more. | 200 | null | {"id": "", "email": "", "preventSubscribePublicApis": true, "seats": 0, "mashapeId": "", "thumbnail": "", "name": "", "slugifiedName": "", "description": "", "createdAt": "", "updatedAt": "", "deletedAt": "", "status": "ACTIVE", "isOrgAdmin": true, "isEnvAdmin": true} | {"type": "object", "properties": {"id": {"type": "string"}, "email": {"type": "string"}, "preventSubscribePublicApis": {"type": "boolean"}, "seats": {"type": "number"}, "mashapeId": {"type": "string"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "slugifiedName": {"type": "string"}, "description": {"typ... |
e9e402fb-2d5a-4853-b7d0-2f548d434540/a3e6ee1b-7024-4792-adbc-1971ece30960/0/0 | Taxes and Social Security Rates | This API allows to get Corporate & Personal Taxes/ Social Security Rates for Company and Employees. All the Data Sources are from: trading economics | null | Get Social Security Rate For Employees by Continent | This endpoint Returns Get Social Security Rate For Employees by Continent or Group | 200 | New Example | [{"countryName": "Albania", "last": "9.5", "previous": "9.5", "date": "Dec/21", "unit": "%"}, {"countryName": "Algeria", "last": "9", "previous": "9", "date": "Dec/21", "unit": "%"}, {"countryName": "Angola", "last": "3", "previous": "3", "date": "Dec/21", "unit": "%"}, {"countryName": "Argentina", "last": "17", "previ... | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"countryName": {"type": "string"}, "last": {"type": "string"}, "previous": {"type": "string"}, "date": {"type": "string"}, "unit": {"type": "string"}}, "required": ["countryName", "date", "last", "previous", "unit"... |
e9e402fb-2d5a-4853-b7d0-2f548d434540/9c1ecf92-9255-49ac-a119-5e3f2faf46d4/0/0 | Taxes and Social Security Rates | This API allows to get Corporate & Personal Taxes/ Social Security Rates for Company and Employees. All the Data Sources are from: trading economics | null | Get All Social Security Rate For Employees | This endpoint Returns All Social Security Rate For Employees | 200 | New Example | [{"countryName": "Albania", "last": "9.5", "previous": "9.5", "date": "Dec/21", "unit": "%"}, {"countryName": "Algeria", "last": "9", "previous": "9", "date": "Dec/21", "unit": "%"}, {"countryName": "Angola", "last": "3", "previous": "3", "date": "Dec/21", "unit": "%"}, {"countryName": "Argentina", "last": "17", "previ... | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"countryName": {"type": "string"}, "last": {"type": "string"}, "previous": {"type": "string"}, "date": {"type": "string"}, "unit": {"type": "string"}}, "required": ["countryName", "date", "last", "previous", "unit"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.