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": "[email protected]", "emailToVerificate": "[email protected]", "verificationAt": "2021-10-11T20:45:08.000Z", "password": "$2b$10$4yTa9epEmXUR./vzl.cte.i21c4qpRSBxq5U5F.968fgabbqGf2iq", "verificationCode": "8047", "verificationCodePassword": null, "active": true, "uuid": "fdb2675c-0407-466e-9f2b-909078d38cee", "refreshToken": null, "rol": {"id": 1, "description": "USER", "enable": true}, "country": {"id": 11, "name": "Argentina", "acronym": "AR", "iso": "54"}}}
{"$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"}, "password": {"type": "string"}, "verificationCode": {"type": "string"}, "verificationCodePassword": {"type": "null"}, "active": {"type": "boolean"}, "uuid": {"type": "string"}, "refreshToken": {"type": "null"}, "rol": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "enable": {"type": "boolean"}}, "required": ["description", "enable", "id"]}, "country": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "acronym": {"type": "string"}, "iso": {"type": "string"}}, "required": ["acronym", "id", "iso", "name"]}}, "required": ["active", "country", "createdAt", "email", "emailToVerificate", "id", "password", "refreshToken", "rol", "updateAt", "uuid", "verificationAt", "verificationCode", "verificationCodePassword"]}}, "required": ["result"]}
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": "[email protected]", "rol": {"id": 1, "description": "USER"}}, {"id": 3, "email": "[email protected]", "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": ["description", "id"]}}, "required": ["email", "id", "rol"]}}}, "required": ["result"]}
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_GDde27dPPjNF0ql3yiBJWlbnNqkNRdX9iV8fzQ", "id": 1}}
{"$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": 0, "targetList": [{"ResTarget": {"location": 7, "val": {"A_Const": {"location": 7, "val": {"Integer": {"ival": 1}}}}}}]}}}]}, "status": "OK"}
{"$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": {"type": "integer"}, "relation": {"type": "object", "properties": {"RangeVar": {"type": "object", "properties": {"inh": {"type": "boolean"}, "location": {"type": "integer"}, "relname": {"type": "string"}, "relpersistence": {"type": "string"}}, "required": ["inh", "location", "relname", "relpersistence"]}}, "required": ["RangeVar"]}}, "required": ["oncommit", "relation"]}, "SelectStmt": {"type": "object", "properties": {"fromClause": {"type": "array", "items": {"type": "object", "properties": {"RangeVar": {"type": "object", "properties": {"inh": {"type": "boolean"}, "location": {"type": "integer"}, "relname": {"type": "string"}, "relpersistence": {"type": "string"}}, "required": ["inh", "location", "relname", "relpersistence"]}}, "required": ["RangeVar"]}}, "op": {"type": "integer"}, "targetList": {"type": "array", "items": {"type": "object", "properties": {"ResTarget": {"type": "object", "properties": {"location": {"type": "integer"}, "val": {"type": "object", "properties": {"A_Const": {"type": "object", "properties": {"location": {"type": "integer"}, "val": {"type": "object", "properties": {"Integer": {"type": "object", "properties": {"ival": {"type": "integer"}}, "required": ["ival"]}}, "required": ["Integer"]}}, "required": ["location", "val"]}}, "required": ["A_Const"]}}, "required": ["location", "val"]}}, "required": ["ResTarget"]}}}, "required": ["fromClause", "op", "targetList"]}}}}, "required": ["error", "query"]}}}, "required": ["ast"]}, "status": {"type": "string"}}, "required": ["data", "status"]}
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": {"column": 15, "line": 1, "offset": 14}}, "name": {"A_Const": {"location": {"end": {"column": 16, "line": 1, "offset": 15}, "start": {"column": 15, "line": 1, "offset": 14}}, "val": {"String": {"str": "T"}}}}, "schemaname": null}, "alias": null, "pivot": null, "sample": null}], "groupClause": null, "havingClause": null, "location": {"end": {"column": 16, "line": 1, "offset": 15}, "start": {"column": 1, "line": 1, "offset": 0}}, "op": "NONE", "orderClause": null, "qualifyClause": null, "targetList": [{"ResTarget": {"connect_by_root": false, "location": {"end": {"column": 10, "line": 1, "offset": 9}, "start": {"column": 8, "line": 1, "offset": 7}}, "name": null, "val": {"A_Const": {"location": {"end": {"column": 9, "line": 1, "offset": 8}, "start": {"column": 8, "line": 1, "offset": 7}}, "val": {"Integer": {"ival": 1}}}}}}], "topClause": null, "whereClause": null, "withClause": null}}}]}, "status": "OK"}
{"$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"]}]}, "query": {"anyOf": [{"type": "null"}, {"type": "object", "properties": {"SelectStmt": {"type": "object", "properties": {"connectByClause": {"type": "null"}, "distinctClause": {"type": "boolean"}, "fromClause": {"type": "array", "items": {"type": "object", "properties": {"RangeVar": {"type": "object", "properties": {"alias": {"type": "null"}, "catalogname": {"type": "null"}, "location": {"type": "object", "properties": {"end": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}, "start": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}}, "required": ["end", "start"]}, "name": {"type": "object", "properties": {"A_Const": {"type": "object", "properties": {"location": {"type": "object", "properties": {"end": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}, "start": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}}, "required": ["end", "start"]}, "val": {"type": "object", "properties": {"String": {"type": "object", "properties": {"str": {"type": "string"}}, "required": ["str"]}}, "required": ["String"]}}, "required": ["location", "val"]}}, "required": ["A_Const"]}, "schemaname": {"type": "null"}}, "required": ["alias", "catalogname", "location", "name", "schemaname"]}, "alias": {"type": "null"}, "pivot": {"type": "null"}, "sample": {"type": "null"}}, "required": ["RangeVar", "alias", "pivot", "sample"]}}, "groupClause": {"type": "null"}, "havingClause": {"type": "null"}, "location": {"type": "object", "properties": {"end": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}, "start": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}}, "required": ["end", "start"]}, "op": {"type": "string"}, "orderClause": {"type": "null"}, "qualifyClause": {"type": "null"}, "targetList": {"type": "array", "items": {"type": "object", "properties": {"ResTarget": {"type": "object", "properties": {"connect_by_root": {"type": "boolean"}, "location": {"type": "object", "properties": {"end": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}, "start": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}}, "required": ["end", "start"]}, "name": {"type": "null"}, "val": {"type": "object", "properties": {"A_Const": {"type": "object", "properties": {"location": {"type": "object", "properties": {"end": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}, "start": {"type": "object", "properties": {"column": {"type": "integer"}, "line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["column", "line", "offset"]}}, "required": ["end", "start"]}, "val": {"type": "object", "properties": {"Integer": {"type": "object", "properties": {"ival": {"type": "integer"}}, "required": ["ival"]}}, "required": ["Integer"]}}, "required": ["location", "val"]}}, "required": ["A_Const"]}}, "required": ["connect_by_root", "location", "name", "val"]}}, "required": ["ResTarget"]}}, "topClause": {"type": "null"}, "whereClause": {"type": "null"}, "withClause": {"type": "null"}}, "required": ["connectByClause", "distinctClause", "fromClause", "groupClause", "havingClause", "location", "op", "orderClause", "qualifyClause", "targetList", "topClause", "whereClause", "withClause"]}}, "required": ["SelectStmt"]}]}, "sql": {"type": "string"}}, "required": ["error", "query"]}}}, "required": ["ast"]}, "status": {"type": "string"}}, "required": ["data", "status"]}
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": {"str": "pg_catalog"}}, {"String": {"str": "int4"}}], "typemod": -1}}}}]}}}, {"error": {"location": 31}, "query": null, "sql": "CREATE"}]], "dmls": [[{"error": null, "query": [{"SelectStmt": {"fromClause": [{"RangeVar": {"inh": true, "location": 6, "relname": "t", "relpersistence": "p"}}], "op": 0, "targetList": [{"ResTarget": {"location": -1, "val": {"ColumnRef": {"fields": [{"A_Star": {}}], "location": -1}}}}]}}]}, {"error": null, "query": [{"SelectStmt": {"fromClause": [{"RangeVar": {"inh": true, "location": 6, "relname": "t1", "relpersistence": "p"}}], "op": 0, "targetList": [{"ResTarget": {"location": -1, "val": {"ColumnRef": {"fields": [{"A_Star": {}}], "location": -1}}}}]}}]}], [{"error": {"location": 6}, "query": null, "sql": null}], [{"error": null, "query": [{"SelectStmt": {"fromClause": [{"RangeVar": {"inh": true, "location": 14, "relname": "t", "relpersistence": "p"}}], "op": 0, "targetList": [{"ResTarget": {"location": 7, "val": {"ColumnRef": {"fields": [{"A_Star": {}}], "location": 7}}}}], "whereClause": {"A_Expr": {"kind": 0, "lexpr": {"ColumnRef": {"fields": [{"String": {"str": "a"}}], "location": 22}}, "location": 24, "name": [{"String": {"str": "="}}], "rexpr": {"ParamRef": {"location": 26, "number": 1}}}}}}]}]]}, "compiled": {"ddl": {"extensions": [], "functions": [], "operators": [], "relations": [{"columns": [{"kind": "column", "names": {"original": "a"}, "nullable": "yes", "sequence": null, "type": {"array": {"bounds": [], "dimension": 0}, "mods": [], "name": "integer", "schema": "pg_catalog"}}], "constraints": [{"columns": ["a"], "constraint": {"ast": null, "compiled": null}, "name": null, "relation": {"name": "t", "schema": "public"}, "type": "CONSTR_NULL"}], "indexes": [], "inherit": null, "names": {"original": {"name": "t", "schema": "public"}}, "partition": null, "type": "TABLE"}], "schemas": [], "sequences": [], "types": []}, "dmls": [[{"constraints": [], "error": null, "fields": [{"aggregate": false, "expressionOf": null, "kind": "column", "locations": [{"action": "add", "location": {"filename": "", "id": 0, "location": {"from": 16, "to": null}}, "place": "inline"}], "names": {"local": "a", "original": "a"}, "nullable": "yes", "over": null, "sequence": null, "source": {"field": "a", "relation": {"name": "t", "schema": "public"}}, "sublink": null, "type": {"array": {"bounds": [], "dimension": 0}, "mods": [], "name": "integer", "schema": "pg_catalog"}, "value": null}], "linesCount": "MANY_OR_NONE", "linkedWith": {"columns": [], "relations": [{"name": "t", "schema": "public", "type": "SELECT"}]}}, {"constraints": [], "error": null, "fields": [{"aggregate": false, "expressionOf": null, "kind": "column", "locations": [{"action": "add", "location": {"filename": "", "id": 0, "location": {"from": 16, "to": null}}, "place": "inline"}], "names": {"local": "a", "original": "a"}, "nullable": "yes", "over": null, "sequence": null, "source": {"field": "a", "relation": {"name": "t", "schema": "public"}}, "sublink": null, "type": {"array": {"bounds": [], "dimension": 0}, "mods": [], "name": "integer", "schema": "pg_catalog"}, "value": null}], "linesCount": "MANY_OR_NONE", "linkedWith": {"columns": [], "relations": [{"name": "t", "schema": "public", "type": "SELECT"}]}}], [{"error": {"from": 6, "to": null}}], [{"constraints": [{"columns": ["a"], "constraint": {"ast": null, "compiled": null}, "location": {"filename": "", "id": 0, "location": {"from": 0, "to": null}}, "name": null, "place": "generated-notnull", "relation": null, "type": "CONSTR_NOTNULL"}], "error": null, "fields": [{"aggregate": false, "expressionOf": null, "kind": "column", "locations": [{"action": "add", "location": {"filename": "", "id": 0, "location": {"from": 16, "to": null}}, "place": "inline"}], "names": {"local": "a", "original": "a"}, "nullable": "no", "over": null, "sequence": null, "source": {"field": "a", "relation": {"name": "t", "schema": "public"}}, "sublink": null, "type": {"array": {"bounds": [], "dimension": 0}, "mods": [], "name": "integer", "schema": "pg_catalog"}, "value": null}], "linesCount": "MANY_OR_NONE", "linkedWith": {"columns": [], "relations": [{"name": "t", "schema": "public", "type": "SELECT"}]}}]]}}, "status": "OK"}
{"$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", "properties": {"location": {"type": "integer"}}, "required": ["location"]}]}, "query": {"anyOf": [{"type": "null"}, {"type": "object", "properties": {"CreateStmt": {"type": "object", "properties": {"oncommit": {"type": "integer"}, "relation": {"type": "object", "properties": {"RangeVar": {"type": "object", "properties": {"inh": {"type": "boolean"}, "location": {"type": "integer"}, "relname": {"type": "string"}, "relpersistence": {"type": "string"}}, "required": ["inh", "location", "relname", "relpersistence"]}}, "required": ["RangeVar"]}, "tableElts": {"type": "array", "items": {"type": "object", "properties": {"ColumnDef": {"type": "object", "properties": {"colname": {"type": "string"}, "is_local": {"type": "boolean"}, "location": {"type": "integer"}, "typeName": {"type": "object", "properties": {"TypeName": {"type": "object", "properties": {"location": {"type": "integer"}, "names": {"type": "array", "items": {"type": "object", "properties": {"String": {"type": "object", "properties": {"str": {"type": "string"}}, "required": ["str"]}}, "required": ["String"]}}, "typemod": {"type": "integer"}}, "required": ["location", "names", "typemod"]}}, "required": ["TypeName"]}}, "required": ["colname", "is_local", "location", "typeName"]}}, "required": ["ColumnDef"]}}}, "required": ["oncommit", "relation", "tableElts"]}}, "required": ["CreateStmt"]}]}, "sql": {"type": "string"}}, "required": ["error", "query"]}}}, "dmls": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"error": {"anyOf": [{"type": "null"}, {"type": "object", "properties": {"location": {"type": "integer"}}, "required": ["location"]}]}, "query": {"anyOf": [{"type": "null"}, {"type": "array", "items": {"type": "object", "properties": {"SelectStmt": {"type": "object", "properties": {"fromClause": {"type": "array", "items": {"type": "object", "properties": {"RangeVar": {"type": "object", "properties": {"inh": {"type": "boolean"}, "location": {"type": "integer"}, "relname": {"type": "string"}, "relpersistence": {"type": "string"}}, "required": ["inh", "location", "relname", "relpersistence"]}}, "required": ["RangeVar"]}}, "op": {"type": "integer"}, "targetList": {"type": "array", "items": {"type": "object", "properties": {"ResTarget": {"type": "object", "properties": {"location": {"type": "integer"}, "val": {"type": "object", "properties": {"ColumnRef": {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"A_Star": {"type": "object"}}, "required": ["A_Star"]}}, "location": {"type": "integer"}}, "required": ["fields", "location"]}}, "required": ["ColumnRef"]}}, "required": ["location", "val"]}}, "required": ["ResTarget"]}}, "whereClause": {"type": "object", "properties": {"A_Expr": {"type": "object", "properties": {"kind": {"type": "integer"}, "lexpr": {"type": "object", "properties": {"ColumnRef": {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"String": {"type": "object", "properties": {"str": {"type": "string"}}, "required": ["str"]}}, "required": ["String"]}}, "location": {"type": "integer"}}, "required": ["fields", "location"]}}, "required": ["ColumnRef"]}, "location": {"type": "integer"}, "name": {"type": "array", "items": {"type": "object", "properties": {"String": {"type": "object", "properties": {"str": {"type": "string"}}, "required": ["str"]}}, "required": ["String"]}}, "rexpr": {"type": "object", "properties": {"ParamRef": {"type": "object", "properties": {"location": {"type": "integer"}, "number": {"type": "integer"}}, "required": ["location", "number"]}}, "required": ["ParamRef"]}}, "required": ["kind", "lexpr", "location", "name", "rexpr"]}}, "required": ["A_Expr"]}}, "required": ["fromClause", "op", "targetList"]}}, "required": ["SelectStmt"]}}]}, "sql": {"type": "null"}}, "required": ["error", "query"]}}}}, "required": ["ddl", "dmls"]}, "compiled": {"type": "object", "properties": {"ddl": {"type": "object", "properties": {"extensions": {"type": "array"}, "functions": {"type": "array"}, "operators": {"type": "array"}, "relations": {"type": "array", "items": {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "names": {"type": "object", "properties": {"original": {"type": "string"}}, "required": ["original"]}, "nullable": {"type": "string"}, "sequence": {"type": "null"}, "type": {"type": "object", "properties": {"array": {"type": "object", "properties": {"bounds": {"type": "array"}, "dimension": {"type": "integer"}}, "required": ["bounds", "dimension"]}, "mods": {"type": "array"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["array", "mods", "name", "schema"]}}, "required": ["kind", "names", "nullable", "sequence", "type"]}}, "constraints": {"type": "array", "items": {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "constraint": {"type": "object", "properties": {"ast": {"type": "null"}, "compiled": {"type": "null"}}, "required": ["ast", "compiled"]}, "name": {"type": "null"}, "relation": {"type": "object", "properties": {"name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["name", "schema"]}, "type": {"type": "string"}}, "required": ["columns", "constraint", "name", "relation", "type"]}}, "indexes": {"type": "array"}, "inherit": {"type": "null"}, "names": {"type": "object", "properties": {"original": {"type": "object", "properties": {"name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["name", "schema"]}}, "required": ["original"]}, "partition": {"type": "null"}, "type": {"type": "string"}}, "required": ["columns", "constraints", "indexes", "inherit", "names", "partition", "type"]}}, "schemas": {"type": "array"}, "sequences": {"type": "array"}, "types": {"type": "array"}}, "required": ["extensions", "functions", "operators", "relations", "schemas", "sequences", "types"]}, "dmls": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"constraints": {"type": "array", "items": {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "constraint": {"type": "object", "properties": {"ast": {"type": "null"}, "compiled": {"type": "null"}}, "required": ["ast", "compiled"]}, "location": {"type": "object", "properties": {"filename": {"type": "string"}, "id": {"type": "integer"}, "location": {"type": "object", "properties": {"from": {"type": "integer"}, "to": {"type": "null"}}, "required": ["from", "to"]}}, "required": ["filename", "id", "location"]}, "name": {"type": "null"}, "place": {"type": "string"}, "relation": {"type": "null"}, "type": {"type": "string"}}, "required": ["columns", "constraint", "location", "name", "place", "relation", "type"]}}, "error": {"anyOf": [{"type": "null"}, {"type": "object", "properties": {"from": {"type": "integer"}, "to": {"type": "null"}}, "required": ["from", "to"]}]}, "fields": {"type": "array", "items": {"type": "object", "properties": {"aggregate": {"type": "boolean"}, "expressionOf": {"type": "null"}, "kind": {"type": "string"}, "locations": {"type": "array", "items": {"type": "object", "properties": {"action": {"type": "string"}, "location": {"type": "object", "properties": {"filename": {"type": "string"}, "id": {"type": "integer"}, "location": {"type": "object", "properties": {"from": {"type": "integer"}, "to": {"type": "null"}}, "required": ["from", "to"]}}, "required": ["filename", "id", "location"]}, "place": {"type": "string"}}, "required": ["action", "location", "place"]}}, "names": {"type": "object", "properties": {"local": {"type": "string"}, "original": {"type": "string"}}, "required": ["local", "original"]}, "nullable": {"type": "string"}, "over": {"type": "null"}, "sequence": {"type": "null"}, "source": {"type": "object", "properties": {"field": {"type": "string"}, "relation": {"type": "object", "properties": {"name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["name", "schema"]}}, "required": ["field", "relation"]}, "sublink": {"type": "null"}, "type": {"type": "object", "properties": {"array": {"type": "object", "properties": {"bounds": {"type": "array"}, "dimension": {"type": "integer"}}, "required": ["bounds", "dimension"]}, "mods": {"type": "array"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["array", "mods", "name", "schema"]}, "value": {"type": "null"}}, "required": ["aggregate", "expressionOf", "kind", "locations", "names", "nullable", "over", "sequence", "source", "sublink", "type", "value"]}}, "linesCount": {"type": "string"}, "linkedWith": {"type": "object", "properties": {"columns": {"type": "array"}, "relations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "schema": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "schema", "type"]}}}, "required": ["columns", "relations"]}}, "required": ["error"]}}}}, "required": ["ddl", "dmls"]}}, "required": ["ast", "compiled"]}, "status": {"type": "string"}}, "required": ["data", "status"]}
e92b28b7-ebbb-41c3-a6f2-e5e2bb7300bf/4e137bae-4abc-462d-9577-fc0c11816abb/0/0
DRRM
DRRM Backend
5.9
userSignIn
200
null
{"accessToken": "eyJhbGciOiJIUzI1NiJ9.eyJfaWQiOiI2NDdiM2NjNzM4M2FmYzFkZjcwNGFlNWEiLCJlbWFpbCI6InRlc3Q4MjFAYXdkLmNvbS5waCIsInBhc3N3b3JkIjoiJDJiJDEwJHZiQ2J1N2hoS0YuVGF2dFVaQUljRGVIODJLSGViZnhsTjNJSFpKUWt2TDZpSklkS1ZGMXplIiwiZmlyc3ROYW1lIjoidGVzdCIsImxhc3ROYW1lIjoibXkgbGFzdG5hbWUiLCJjb250YWN0TnVtYmVyIjoiMDk5OTExOTE5OSIsImFkZHJlc3MiOnsicHJvdmluY2UiOnsiY29kZSI6MTAwMCwibmFtZSI6IlRlc3QgcHJvdmljZSJ9LCJtdW5pY2lwYWxpdHkiOnsiY29kZSI6MzAwMCwibmFtZSI6IlBhbmFibyJ9fSwiX192IjowfQ.CBjS8HeeXE2o7aT2Mpb_w2bnXac7N5oiRlGp3oIolyo"}
{"type": "object"}
e92b28b7-ebbb-41c3-a6f2-e5e2bb7300bf/4e137bae-4abc-462d-9577-fc0c11816abb/0/1
DRRM
DRRM Backend
5.9
userSignIn
200
null
{"accessToken": "eyJhbGciOiJIUzI1NiJ9.eyJfaWQiOiI2NGI2YTE5ZDRkZjUzZDk3OTBhNDQ5YzYiLCJlbWFpbCI6ImFkbWluQGFkbWluLmNvbSIsInBhc3N3b3JkIjoiJDJiJDEwJER2MmpTN2dqSGdGM1cyWWFiVi5IQS5sSld1ekEzR1ZZNnZ2UURPMEtQTlBPM1g3UW1sbEMyIiwiZmlyc3ROYW1lIjoiU3VwZXIiLCJsYXN0TmFtZSI6IkFkbWluIiwibWlkZGxlTmFtZSI6IlNlZWRlZCIsImNvbnRhY3ROdW1iZXIiOiIwOTk5MTE5MTk5IiwiYWRkcmVzc0RhdGEiOnsicmVnaW9uX2NvZGUiOiIxMjAwMDAwMDAiLCJwcm92aW5jZV9jb2RlIjoiMTI2MzAwMDAwIiwiY2l0eV9jb2RlIjoiMTI2MzAzMDAwIiwic3ViX211bmljaXBhbGl0eV9jb2RlIjoiZmFsc2UiLCJiYXJhbmdnYXlfY29kZSI6MzAwMCwicHVyb2siOnsibmFtZSI6IlNhcmFuZ2dhbmkgQ291bnRyeSBIb21lcyJ9LCJsb3RfYmxvY2tfc3RyZWV0IjoiMTIzIEJsb2NrIDUgbG90IDE5IFVua25vd24gU3RyZWV0In0sInJvbGUiOiJTVVBFUl9BRE1JTiIsIm9mZmljZSI6bnVsbCwiX192IjowfQ.ZwByz80F89f7waxr5xI1lsCzOyyoo_HMVHn83K-m2DI", "user": {"_id": "64b6a19d4df53d9790a449c6", "email": "[email protected]", "firstName": "Super", "lastName": "Admin", "middleName": "Seeded", "contactNumber": "0999119199", "addressData": {"region_code": "120000000", "province_code": "126300000", "city_code": "126303000", "sub_municipality_code": "false", "baranggay_code": 3000, "purok": {"name": "Saranggani Country Homes"}, "lot_block_street": "123 Block 5 lot 19 Unknown Street"}, "role": "SUPER_ADMIN", "office": null, "__v": 0}}
{"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": "", "errors": null, "holidays": {"query": {"country": "US", "year": "2019", "pretty": "false", "format": "json"}, "holidays": [{"date": "2019-01-01", "start": "2019-01-01T00:00:00.000Z", "end": "2019-01-02T00:00:00.000Z", "name": "New Year's Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-01-21", "start": "2019-01-21T00:00:00.000Z", "end": "2019-01-22T00:00:00.000Z", "name": "Martin Luther King Jr. Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-02-14", "start": "2019-02-14T00:00:00.000Z", "end": "2019-02-15T00:00:00.000Z", "name": "Valentine's Day", "type": "observance", "public": false, "country": "US"}, {"date": "2019-02-18", "start": "2019-02-18T00:00:00.000Z", "end": "2019-02-19T00:00:00.000Z", "name": "Washington's Birthday", "type": "public", "public": true, "country": "US"}, {"date": "2019-04-15", "start": "2019-04-15T00:00:00.000Z", "end": "2019-04-16T00:00:00.000Z", "name": "Tax Day", "type": "observance", "public": false, "country": "US"}, {"date": "2019-04-24", "start": "2019-04-24T00:00:00.000Z", "end": "2019-04-25T00:00:00.000Z", "name": "Administrative Professionals Day", "type": "observance", "public": false, "country": "US"}, {"date": "2019-05-12", "start": "2019-05-12T00:00:00.000Z", "end": "2019-05-13T00:00:00.000Z", "name": "Mother's Day", "type": "observance", "public": false, "country": "US"}, {"date": "2019-05-27", "start": "2019-05-27T00:00:00.000Z", "end": "2019-05-28T00:00:00.000Z", "name": "Memorial Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-06-16", "start": "2019-06-16T00:00:00.000Z", "end": "2019-06-17T00:00:00.000Z", "name": "Father's Day", "type": "observance", "public": false, "country": "US"}, {"date": "2019-07-04", "start": "2019-07-04T00:00:00.000Z", "end": "2019-07-05T00:00:00.000Z", "name": "Independence Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-09-02", "start": "2019-09-02T00:00:00.000Z", "end": "2019-09-03T00:00:00.000Z", "name": "Labour Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-10-14", "start": "2019-10-14T00:00:00.000Z", "end": "2019-10-15T00:00:00.000Z", "name": "Columbus Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-10-31", "start": "2019-10-31T18:00:00.000Z", "end": "2019-11-01T00:00:00.000Z", "name": "Halloween", "type": "observance", "public": false, "country": "US"}, {"date": "2019-11-11", "start": "2019-11-11T00:00:00.000Z", "end": "2019-11-12T00:00:00.000Z", "name": "Veterans Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-11-28", "start": "2019-11-28T00:00:00.000Z", "end": "2019-11-29T00:00:00.000Z", "name": "Thanksgiving Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-11-29", "start": "2019-11-29T00:00:00.000Z", "end": "2019-11-30T00:00:00.000Z", "name": "Day after Thanksgiving Day", "type": "observance", "public": false, "country": "US"}, {"date": "2019-12-25", "start": "2019-12-25T00:00:00.000Z", "end": "2019-12-26T00:00:00.000Z", "name": "Christmas Day", "type": "public", "public": true, "country": "US"}, {"date": "2019-12-31", "start": "2019-12-31T00:00:00.000Z", "end": "2020-01-01T00:00:00.000Z", "name": "New Year's Eve", "type": "observance", "public": false, "country": "US"}]}}
{"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"}, "resets": {"type": "null"}}}, "message": {"type": "string"}, "errors": {"type": "null"}, "holidays": {"type": "object", "properties": {"query": {"type": "object", "properties": {"country": {"type": "string"}, "year": {"type": "string"}, "pretty": {"type": "string"}, "format": {"type": "string"}}}, "holidays": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "public": {"type": "boolean"}, "country": {"type": "string"}}}}}}}}
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"]}, "metadata": {"type": "object", "properties": {"size": {"type": "object", "properties": {"bytes": {"type": "integer"}, "readable": {"type": "string"}}, "required": ["bytes", "readable"]}, "name": {"type": "string"}, "id": {"type": "string"}}, "required": ["id", "name", "size"]}}, "required": ["metadata", "url"]}}, "required": ["file"]}}, "required": ["data", "status"]}
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_distance_limiter": "", "focus_method": "", "focus_notes": "", "full_time_manual": true, "groups": "", "hood_product_code": "", "hood_supplied": true, "id": 0, "image_stabilization": "", "length": "", "lens_mount": "", "lens_type": "", "materials": "", "max_format_size": "", "maximum_aperture": "", "maximum_magnification": "", "minimum_aperture": "", "minimum_focus": "", "motor_type": "", "name": "", "notes": "", "number_of_diaphragm_blades": "", "optional_accessories": "", "power_zoom": true, "sealing": true, "special_elements__coatings": "", "tripod_collar": true, "updated_at": "", "weight": "", "zoom_lock": true, "zoom_method": ""}], "max_page": 0, "page": 0, "page_size": 0}
{"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": "string"}, "colour": {"type": "string"}, "created_at": {"type": "string"}, "diameter": {"type": "string"}, "distance_scale": {"type": "boolean"}, "dof_scale": {"type": "boolean"}, "elements": {"type": "string"}, "filter_notes": {"type": "string"}, "filter_thread": {"type": "string"}, "focal_length": {"type": "string"}, "focus_distance_limiter": {"type": "string"}, "focus_method": {"type": "string"}, "focus_notes": {"type": "string"}, "full_time_manual": {"type": "boolean"}, "groups": {"type": "string"}, "hood_product_code": {"type": "string"}, "hood_supplied": {"type": "boolean"}, "id": {"type": "integer"}, "image_stabilization": {"type": "string"}, "length": {"type": "string"}, "lens_mount": {"type": "string"}, "lens_type": {"type": "string"}, "materials": {"type": "string"}, "max_format_size": {"type": "string"}, "maximum_aperture": {"type": "string"}, "maximum_magnification": {"type": "string"}, "minimum_aperture": {"type": "string"}, "minimum_focus": {"type": "string"}, "motor_type": {"type": "string"}, "name": {"type": "string"}, "notes": {"type": "string"}, "number_of_diaphragm_blades": {"type": "string"}, "optional_accessories": {"type": "string"}, "power_zoom": {"type": "boolean"}, "sealing": {"type": "boolean"}, "special_elements__coatings": {"type": "string"}, "tripod_collar": {"type": "boolean"}, "updated_at": {"type": "string"}, "weight": {"type": "string"}, "zoom_lock": {"type": "boolean"}, "zoom_method": {"type": "string"}}}}, "max_page": {"type": "integer"}, "page": {"type": "integer"}, "page_size": {"type": "integer"}}}
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_rating": "", "continuous_drive": "", "created_at": "", "custom_white_balance": true, "digital_zoom": true, "dimensions": "", "durability": "", "effective_pixels": "", "environmentally_sealed": true, "exposure_compensation": "", "external_flash": true, "field_of_view": "", "flash_modes": "", "flash_range": "", "focal_length_equiv": "", "focal_length_multiplier": "", "format": "", "gps": "", "gps_notes": "", "hdmi": "", "headphone_port": true, "id": 0, "image_ratio_w_h": "", "image_stabilization": true, "image_stabilization_notes": "", "iso": "", "jpeg_quality_levels": "", "lens_mount": "", "live_view": true, "macro_focus_range": "", "manual_exposure_mode": true, "manual_focus": true, "max_resolution": "", "maximum_aperture": "", "maximum_shutter_speed": "", "maximum_shutter_speed_electronic": "", "metering_modes": "", "microphone": "", "microphone_port": true, "minimum_shutter_speed": "", "modes": "", "msrp": "", "name": "", "normal_focus_range": "", "number_of_cross_type_focus_points": "", "number_of_focus_points": "", "number_of_lenses": "", "optical_zoom": "", "orientation_sensor": true, "other_resolutions": "", "processor": "", "remote_control": true, "resolutions": "", "screen_dots": "", "screen_size": "", "screen_type": "", "self_timer": true, "sensor_photo_detectors": "", "sensor_size": "", "sensor_type": "", "shutter_priority": true, "speaker": "", "storage_included": "", "storage_types": "", "subject_scene_modes": "", "timelapse_recording": true, "touch_screen": true, "uncompressed_format": "", "updated_at": "", "usb": "", "usb_charging": true, "videography_notes": "", "viewfinder_coverage": "", "viewfinder_magnification": "", "viewfinder_resolution": "", "viewfinder_type": "", "wb_bracketing": true, "weight_inc_batteries": "", "white_balance_presets": "", "wireless": "", "wireless_notes": ""}], "max_page": 0, "page": 0, "page_size": 0}
{"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"}, "battery_description": {"type": "string"}, "battery_life_cipa": {"type": "string"}, "body_type": {"type": "string"}, "boosted_iso_maximum": {"type": "string"}, "boosted_iso_minimum": {"type": "string"}, "brand": {"type": "string"}, "built_in_flash": {"type": "boolean"}, "cipa_image_stabilization_rating": {"type": "string"}, "continuous_drive": {"type": "string"}, "created_at": {"type": "string"}, "custom_white_balance": {"type": "boolean"}, "digital_zoom": {"type": "boolean"}, "dimensions": {"type": "string"}, "durability": {"type": "string"}, "effective_pixels": {"type": "string"}, "environmentally_sealed": {"type": "boolean"}, "exposure_compensation": {"type": "string"}, "external_flash": {"type": "boolean"}, "field_of_view": {"type": "string"}, "flash_modes": {"type": "string"}, "flash_range": {"type": "string"}, "focal_length_equiv": {"type": "string"}, "focal_length_multiplier": {"type": "string"}, "format": {"type": "string"}, "gps": {"type": "string"}, "gps_notes": {"type": "string"}, "hdmi": {"type": "string"}, "headphone_port": {"type": "boolean"}, "id": {"type": "integer"}, "image_ratio_w_h": {"type": "string"}, "image_stabilization": {"type": "boolean"}, "image_stabilization_notes": {"type": "string"}, "iso": {"type": "string"}, "jpeg_quality_levels": {"type": "string"}, "lens_mount": {"type": "string"}, "live_view": {"type": "boolean"}, "macro_focus_range": {"type": "string"}, "manual_exposure_mode": {"type": "boolean"}, "manual_focus": {"type": "boolean"}, "max_resolution": {"type": "string"}, "maximum_aperture": {"type": "string"}, "maximum_shutter_speed": {"type": "string"}, "maximum_shutter_speed_electronic": {"type": "string"}, "metering_modes": {"type": "string"}, "microphone": {"type": "string"}, "microphone_port": {"type": "boolean"}, "minimum_shutter_speed": {"type": "string"}, "modes": {"type": "string"}, "msrp": {"type": "string"}, "name": {"type": "string"}, "normal_focus_range": {"type": "string"}, "number_of_cross_type_focus_points": {"type": "string"}, "number_of_focus_points": {"type": "string"}, "number_of_lenses": {"type": "string"}, "optical_zoom": {"type": "string"}, "orientation_sensor": {"type": "boolean"}, "other_resolutions": {"type": "string"}, "processor": {"type": "string"}, "remote_control": {"type": "boolean"}, "resolutions": {"type": "string"}, "screen_dots": {"type": "string"}, "screen_size": {"type": "string"}, "screen_type": {"type": "string"}, "self_timer": {"type": "boolean"}, "sensor_photo_detectors": {"type": "string"}, "sensor_size": {"type": "string"}, "sensor_type": {"type": "string"}, "shutter_priority": {"type": "boolean"}, "speaker": {"type": "string"}, "storage_included": {"type": "string"}, "storage_types": {"type": "string"}, "subject_scene_modes": {"type": "string"}, "timelapse_recording": {"type": "boolean"}, "touch_screen": {"type": "boolean"}, "uncompressed_format": {"type": "string"}, "updated_at": {"type": "string"}, "usb": {"type": "string"}, "usb_charging": {"type": "boolean"}, "videography_notes": {"type": "string"}, "viewfinder_coverage": {"type": "string"}, "viewfinder_magnification": {"type": "string"}, "viewfinder_resolution": {"type": "string"}, "viewfinder_type": {"type": "string"}, "wb_bracketing": {"type": "boolean"}, "weight_inc_batteries": {"type": "string"}, "white_balance_presets": {"type": "string"}, "wireless": {"type": "string"}, "wireless_notes": {"type": "string"}}}}, "max_page": {"type": "integer"}, "page": {"type": "integer"}, "page_size": {"type": "integer"}}}
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 a fist, etc.)", "Cutting people off when they speak", "Jerky head movements", "Protruding eyes", "Flexing the fingers or arm muscles", "...and more"]}
{"$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 Incorporate", "state": "WEST BENGAL", "class_detail": "RICE", "alert": "", "proprietor_address": "BLOCK- BURDWAN -II, VILL & P.O. - SAKTIGARH, P.S. - BURDWAN, PURBA BARDHAMAN, PIN 713149", "attorney_name": "D. SEN & CO[7656]", "attorney_address": "6, OLD POST OFFICE STREET, GROUND FLOOR, KOLKATA 700 001.", "expire_at": "", "publication_details": "Published in Journal No. : 2015-0 Dated : 30/08/2021", "documents": [{"id": "WFlaW1xdKS4rKiguLy5YWVpbXF0=", "sn": "1", "date": "10/06/2021", "name": "TM-A(TRADE MARKS APPLICATION)"}, {"id": "WFlaW1xdKS4tKi0wKClYWVpbXF0=", "sn": "2", "date": "15/07/2021", "name": "Reply to Exam Report (MIS-R)"}, {"id": "WFlaW1xdKS8oJy4uLC5YWVpbXF0=", "sn": "3", "date": "06/10/2021", "name": "Journal Copy"}, {"id": "WFlaW1xdKS8oLi4uKy1YWVpbXF0=", "sn": "4", "date": "16/10/2021", "name": "TM-O(NOTICE OF OPPOSITION)"}, {"id": "WFlaW1xdKTAoJygvKCxYWVpbXF0=", "sn": "5", "date": "17/03/2022", "name": "Annexure -1 under rule 46"}, {"id": "WFlaW1xdKTAoJygvKCtYWVpbXF0=", "sn": "6", "date": "17/03/2022", "name": "Evidence Affidavit Under Rule 46 (TOP)"}, {"id": "WFlaW1xdKTApLCktKjBYWVpbXF0=", "sn": "7", "date": "11/04/2022", "name": "Annexure -1 under rule 46"}, {"id": "WFlaW1xdKTApLCktKi9YWVpbXF0=", "sn": "8", "date": "11/04/2022", "name": "Evidence Affidavit Under Rule 46 (TOP)"}], "examination_report": "https://s3.ap-south-1.amazonaws.com/binbash.ai/media/trademarks/documents/5000000_Examination_Report.pdf", "oppositions_data": [{"date": "16/10/2021", "opposition_number": "1128109", "opponent_code": "847820", "opponent_details": "SONALIKA AGRICULTURE INDUSTRIESINDUSTRIAL ESTATE, JALLANDHAR ROAD, HOSHIARPUR-146 001, PUNJAB", "id": "WFlaW1xdKCgpLygnMFhZWltcXQ==", "type": "O"}]}
{"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_name": {"type": "string"}, "state": {"type": "string"}, "class_detail": {"type": "string"}, "alert": {"type": "string"}, "proprietor_address": {"type": "string"}, "attorney_name": {"type": "string"}, "attorney_address": {"type": "string"}, "expire_at": {"type": "string"}, "publication_details": {"type": "string"}, "documents": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "sn": {"type": "string"}, "date": {"type": "string"}, "name": {"type": "string"}}}}, "examination_report": {"type": "string"}, "oppositions_data": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "opposition_number": {"type": "string"}, "opponent_code": {"type": "string"}, "opponent_details": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}}}}}}
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", "convertobot.com", "mybrilliantmove.com", "pb8888.com", "abbeydaledirect.co.uk", "amrsoftec.com", "protegus.eu", "safashir.ir", "chemurgic.net", "shakilsiddiqui.com", "asianconcretefederation.org", "rentkh.com", "prastakhabar.com", "flocolive.com", "619.ir", "dohakwikspan.com.qa", "biobaxy.com", "chemtradeasia.com", "chienthangalumin.com", "petekkoleji.com", "arimo.ac.tz", "allpricer.ru", "pgascom.co.id", "araborganizers.org", "getinvoice.co", "malpackcorp.com", "svf.org.vn", "gayche.net", "p2cbusiness.com", "mykmcc.org", "100millionseha.eg", "genaxy.com", "kifissiarealestate.gr", "sdelano-dlya-detstva.ru", "bhomyo.com", "padeco.co.in", "onvers.com", "openclassify.com", "getsmartfi.com", "effispray.gr", "spm-co.com", "q-immo.com", "subodhmahilacollege.com", "lmlhomes.in", "idsb.com.my", "maralholding.com", "villacollis.pl", "okodok.ru", "decoding.in", "onchicbabyclothes.com", "graceministryindia.org", "asmetalloprokat.ru", "singingexperience.co.uk", "hi4best.net", "yachtmanholidays.com", "shaozi.com", "com.net.id", "vitamilkcampaign.com", "chhotumaharaj.com", "magandturbo.com", "quyoulai.com", "shag.co.uk", "ponantacademy.com", "soveem.com", "line-arch.com", "refort.com", "autoss.eu", "lubrisa.com", "mon.world", "thebodydynamic1.com", "thebodydynamic1.com", "zeytoonbook.com", "juteforlife.org", "heapro.com", "expbt.ru", "greethailand.com", "accuratehr.com", "insoftservices.com", "gettheappff.com", "kashanfarhangi.ir", "couponsexperts.com", "tudemia.com", "xdd.hu", "igaming.com", "sout-studios.com", "vwuruguay.uy"]}
{"$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": 9223372036854776000}, "athlete_name": {"type": "string", "description": ""}, "athlete_GAL": {"type": "string", "description": ""}, "athlete_Country": {"type": "string", "description": ""}, "athlete_Points": {"type": "number", "description": ""}}}}
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": 9223372036854776000}, "athlete_name": {"type": "string", "description": ""}, "athlete_GAL": {"type": "string", "description": ""}, "athlete_Country": {"type": "string", "description": ""}, "athlete_Points": {"type": "number", "description": ""}}}}
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"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "externalId": {"type": "string"}, "parents": {"type": "array", "items": {"description": "**Omitted**"}}, "isOrgAdmin": {"type": "boolean"}, "isEnvAdmin": {"type": "boolean"}, "email": {"type": "string"}, "mashapeId": {"type": "string"}, "preventSubscribePublicApis": {"type": "boolean"}, "seats": {"type": "number"}, "name": {"type": "string"}}, "required": ["id", "type", "status", "externalId", "parents"]}
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", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "isOrgAdmin": {"type": "boolean"}, "isEnvAdmin": {"type": "boolean"}}, "required": ["id", "mashapeId", "thumbnail", "name", "slugifiedName", "description", "status"]}
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": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "isOrgAdmin": {"type": "boolean"}, "isEnvAdmin": {"type": "boolean"}}, "required": ["id", "mashapeId", "thumbnail", "name", "slugifiedName", "description", "status"]}}
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": "string"}, "description": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "isOrgAdmin": {"type": "boolean"}, "isEnvAdmin": {"type": "boolean"}}, "required": ["id", "mashapeId", "thumbnail", "name", "slugifiedName", "description", "status"]}}
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": "object"}, "user": {"type": "object"}, "activeEntity": {"type": "object"}, "attributes": {"type": "object"}, "params": {"type": "object"}, "geo": {"type": "object"}}, "required": ["id"]}}}, "required": ["total", "log"]}
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": {"type": "string"}, "endpointHash": {"type": "string"}, "requests": {"type": "number"}, "errors": {"type": "number"}, "latency": {"type": "number"}, "date": {"type": "string"}}, "required": ["apiversion", "apiid", "endpointHash", "requests", "errors", "latency", "date"]}}}, "required": ["endpointHash", "data"]}}}, "required": ["apiVersion", "endpointsData"]}}
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-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "weight": {"type": "number"}}, "required": ["id", "longDescription", "name", "shortDescription", "slugifiedName", "status", "type", "weight"]}}
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"}, "versionStatus": {"enum": ["active", "draft", "deprecated"], "type": "string"}}, "required": ["api", "current", "id", "name", "status"]}
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"}, "developer": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "type": {"type": "string"}}, "required": ["id", "apiId", "blocked", "developer", "status", "type"]}}
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": "string"}, "status": {"type": "string"}, "canceled": {"type": "boolean"}, "autocanceled": {"type": "boolean"}, "type": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "canceledAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "parentId": {"type": "string"}, "isBlocked": {"type": "boolean"}}, "required": ["id", "userId", "mashapeId", "apiId", "apiVersionId", "stripeId", "customToken", "billingPlanVersionId", "status", "canceled", "autocanceled", "type", "parentId", "isBlocked"]}}
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"}, "versionStatus": {"enum": ["active", "draft", "deprecated"], "type": "string"}}, "required": ["api", "current", "id", "name", "status"]}
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"}, "versionStatus": {"enum": ["active", "draft", "deprecated"], "type": "string"}}, "required": ["api", "current", "id", "name", "status"]}
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": true, "saveResponseHeadersLogging": true, "saveRequestBodyLogging": true, "saveResponseBodyLogging": true}}
{"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": "number"}, "payload": {"type": "object", "properties": {"reqParams": {"type": "object"}, "reqHeaders": {"type": "object"}, "resHeaders": {"type": "object"}, "reqBody": {"type": "object"}, "resBody": {"type": "object"}, "saveRequestQueryParametersLogging": {"type": "boolean"}, "saveRequestHeadersLogging": {"type": "boolean"}, "saveResponseHeadersLogging": {"type": "boolean"}, "saveRequestBodyLogging": {"type": "boolean"}, "saveResponseBodyLogging": {"type": "boolean"}}, "required": ["reqParams", "reqHeaders", "resHeaders", "reqBody", "resBody", "saveRequestQueryParametersLogging", "saveRequestHeadersLogging", "saveResponseHeadersLogging", "saveRequestBodyLogging", "saveResponseBodyLogging"]}}, "required": ["apiId", "versionId", "endpoint", "httpMethod", "httpStatus", "originIp", "reqBodySize", "requestId", "resBodySize"]}
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": "string"}, "canceled": {"type": "boolean"}, "autocanceled": {"type": "boolean"}, "type": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "canceledAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "parentId": {"type": "string"}, "isBlocked": {"type": "boolean"}}, "required": ["id", "userId", "mashapeId", "apiId", "apiVersionId", "stripeId", "customToken", "billingPlanVersionId", "status", "canceled", "autocanceled", "type", "parentId", "isBlocked"]}
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": "string"}, "status": {"type": "string"}, "type": {"type": "string"}, "useHttpProxy": {"type": "boolean"}, "visibility": {"enum": ["PUBLIC", "PRIVATE"], "type": "string"}, "gateways": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "longDescription": {"type": "string"}, "websiteUrl": {"type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "pricing": {"enum": ["PAID", "PERUSE", "FREEMIUM", "FREE"], "type": "string"}}, "required": ["category", "categoryId", "id", "name", "ownerId", "slugifiedName", "status", "type", "useHttpProxy", "visibility", "description", "longDescription", "websiteUrl", "pricing"]}
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": "string"}, "originCountry": {"type": "string"}, "resBodySize": {"type": "number"}, "apiLatency": {"type": "number"}, "callTime": {"type": "string"}, "versionId": {"type": "string"}}, "required": ["apiId", "endpoint", "httpMethod", "httpStatus", "originIp", "reqBodySize", "requestId", "originCountry", "resBodySize", "apiLatency", "callTime", "versionId"]}}, "total": {"type": "number"}}, "required": ["data", "total"]}
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": "string"}, "status": {"type": "string"}, "type": {"type": "string"}, "useHttpProxy": {"type": "boolean"}, "visibility": {"enum": ["PUBLIC", "PRIVATE"], "type": "string"}, "gateways": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "longDescription": {"type": "string"}, "websiteUrl": {"type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "pricing": {"enum": ["PAID", "PERUSE", "FREEMIUM", "FREE"], "type": "string"}}, "required": ["category", "categoryId", "id", "name", "ownerId", "slugifiedName", "status", "type", "useHttpProxy", "visibility", "description", "longDescription", "websiteUrl", "pricing"]}
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", "DELETED"], "type": "string"}, "versionStatus": {"enum": ["active", "draft", "deprecated"], "type": "string"}}, "required": ["api", "current", "id", "name", "status"]}}
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"}, "slugifiedName": {"type": "string"}, "status": {"type": "string"}, "type": {"type": "string"}, "useHttpProxy": {"type": "boolean"}, "visibility": {"enum": ["PUBLIC", "PRIVATE"], "type": "string"}, "gateways": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "longDescription": {"type": "string"}, "websiteUrl": {"type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "pricing": {"enum": ["PAID", "PERUSE", "FREEMIUM", "FREE"], "type": "string"}}, "required": ["category", "categoryId", "id", "name", "ownerId", "slugifiedName", "status", "type", "useHttpProxy", "visibility", "description", "longDescription", "websiteUrl", "pricing"]}}
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": "string"}, "status": {"type": "string"}, "type": {"type": "string"}, "useHttpProxy": {"type": "boolean"}, "visibility": {"enum": ["PUBLIC", "PRIVATE"], "type": "string"}, "gateways": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "longDescription": {"type": "string"}, "websiteUrl": {"type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "pricing": {"enum": ["PAID", "PERUSE", "FREEMIUM", "FREE"], "type": "string"}}, "required": ["category", "categoryId", "id", "name", "ownerId", "slugifiedName", "status", "type", "useHttpProxy", "visibility", "description", "longDescription", "websiteUrl", "pricing"]}
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": true, "facebookUsername": "", "facebookToken": "", "rememberMe": true, "followers": 0, "company": "", "position": "", "bio": "", "location": "", "lastActive": "", "lastActivePublic": true, "thumbnail": "", "name": "", "originSite": "", "username": "", "verified": true, "packages": 0, "discussions": 0, "createdAt": "", "updatedAt": "", "isCreatedUsingRapid": true, "twoFactorAuthData": [{"type": "", "isEnabled": true}]}]
{"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"}, "resetPasswordExpires": {"type": "boolean"}, "resetPasswordTokenUsed": {"type": "boolean"}, "gmail": {"type": "string"}, "googleToken": {"type": "string"}, "githubUsername": {"type": "string"}, "githubToken": {"type": "string"}, "rakutenToken": {"type": "string"}, "githubUrl": {"type": "string"}, "githubUrlPublic": {"type": "boolean"}, "facebookUsername": {"type": "string"}, "facebookToken": {"type": "string"}, "rememberMe": {"type": "boolean"}, "followers": {"type": "number"}, "company": {"type": "string"}, "position": {"type": "string"}, "bio": {"type": "string"}, "location": {"type": "string"}, "lastActive": {"type": "string"}, "lastActivePublic": {"type": "boolean"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "originSite": {"type": "string"}, "username": {"type": "string"}, "verified": {"type": "boolean"}, "packages": {"type": "number"}, "discussions": {"type": "number"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "isCreatedUsingRapid": {"type": "boolean"}, "twoFactorAuthData": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "isEnabled": {"type": "boolean"}}, "required": ["type", "isEnabled"]}}}, "required": ["id", "status", "mashapeId", "email", "emailPublic", "password", "resetPasswordToken", "resetPasswordExpires", "resetPasswordTokenUsed", "gmail", "googleToken", "githubUsername", "githubToken", "rakutenToken", "githubUrl", "githubUrlPublic", "facebookUsername", "facebookToken", "rememberMe", "followers", "company", "position", "bio", "location", "lastActive", "lastActivePublic", "thumbnail", "name", "originSite", "username", "verified", "packages", "discussions", "isCreatedUsingRapid"]}}
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": true, "facebookUsername": "", "facebookToken": "", "rememberMe": true, "followers": 0, "company": "", "position": "", "bio": "", "location": "", "lastActive": "", "lastActivePublic": true, "thumbnail": "", "name": "", "originSite": "", "username": "", "verified": true, "packages": 0, "discussions": 0, "createdAt": "", "updatedAt": "", "isCreatedUsingRapid": true, "twoFactorAuthData": [{"type": "", "isEnabled": true}]}
{"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": {"type": "boolean"}, "resetPasswordTokenUsed": {"type": "boolean"}, "gmail": {"type": "string"}, "googleToken": {"type": "string"}, "githubUsername": {"type": "string"}, "githubToken": {"type": "string"}, "rakutenToken": {"type": "string"}, "githubUrl": {"type": "string"}, "githubUrlPublic": {"type": "boolean"}, "facebookUsername": {"type": "string"}, "facebookToken": {"type": "string"}, "rememberMe": {"type": "boolean"}, "followers": {"type": "number"}, "company": {"type": "string"}, "position": {"type": "string"}, "bio": {"type": "string"}, "location": {"type": "string"}, "lastActive": {"type": "string"}, "lastActivePublic": {"type": "boolean"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "originSite": {"type": "string"}, "username": {"type": "string"}, "verified": {"type": "boolean"}, "packages": {"type": "number"}, "discussions": {"type": "number"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "isCreatedUsingRapid": {"type": "boolean"}, "twoFactorAuthData": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "isEnabled": {"type": "boolean"}}, "required": ["type", "isEnabled"]}}}, "required": ["id", "status", "mashapeId", "email", "emailPublic", "password", "resetPasswordToken", "resetPasswordExpires", "resetPasswordTokenUsed", "gmail", "googleToken", "githubUsername", "githubToken", "rakutenToken", "githubUrl", "githubUrlPublic", "facebookUsername", "facebookToken", "rememberMe", "followers", "company", "position", "bio", "location", "lastActive", "lastActivePublic", "thumbnail", "name", "originSite", "username", "verified", "packages", "discussions", "isCreatedUsingRapid"]}
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": "string"}, "canceled": {"type": "boolean"}, "autocanceled": {"type": "boolean"}, "type": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "canceledAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "parentId": {"type": "string"}, "isBlocked": {"type": "boolean"}}, "required": ["id", "userId", "mashapeId", "apiId", "apiVersionId", "stripeId", "customToken", "billingPlanVersionId", "status", "canceled", "autocanceled", "type", "parentId", "isBlocked"]}
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"}, "latency": {"type": "number"}, "date": {"type": "string"}}, "required": ["apiversion", "apiid", "endpointHash", "requests", "errors", "latency", "date"]}}}, "required": ["date", "data"]}}
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": "string"}, "status": {"type": "string"}, "canceled": {"type": "boolean"}, "autocanceled": {"type": "boolean"}, "type": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "canceledAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "parentId": {"type": "string"}, "isBlocked": {"type": "boolean"}}, "required": ["id", "userId", "mashapeId", "apiId", "apiVersionId", "stripeId", "customToken", "billingPlanVersionId", "status", "canceled", "autocanceled", "type", "parentId", "isBlocked"]}}
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": "", "refundDate": "", "refundedAmount": 0, "disputed": 0, "payoutTransactionId": 0, "createdAt": "", "updatedAt": "", "deletedAt": "", "invoicePeriodStart": "", "invoicePeriodEnd": "", "chargedAmount": 0, "debitedAmount": 0, "transactionTypeId": 0, "invoiceBilling": true}]
{"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"}, "subscriptionId": {"type": "string"}, "totalAmount": {"type": "number"}, "additionalAmount": {"type": "number"}, "refunded": {"type": "number"}, "paid": {"type": "number"}, "paidout": {"type": "string"}, "payoutAmount": {"type": "number"}, "status": {"type": "string"}, "periodStart": {"format": "date-time", "type": "string"}, "periodEnd": {"format": "date-time", "type": "string"}, "invoiceLink": {"type": "string"}, "refundDate": {"format": "date-time", "type": "string"}, "refundedAmount": {"type": "number"}, "disputed": {"type": "number"}, "payoutTransactionId": {"type": "number"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "invoicePeriodStart": {"format": "date-time", "type": "string"}, "invoicePeriodEnd": {"format": "date-time", "type": "string"}, "chargedAmount": {"type": "number"}, "debitedAmount": {"type": "number"}, "transactionTypeId": {"type": "number"}, "invoiceBilling": {"type": "boolean"}}, "required": ["id", "stripeId", "chargeId", "apiId", "apiVersionId", "billingPlanVersionId", "userId", "mashapeId", "subscriptionId", "totalAmount", "additionalAmount", "refunded", "paid", "paidout", "payoutAmount", "status", "periodStart", "periodEnd", "invoiceLink", "refundDate", "refundedAmount", "disputed", "payoutTransactionId", "createdAt", "updatedAt", "deletedAt", "invoicePeriodStart", "invoicePeriodEnd", "chargedAmount", "debitedAmount", "transactionTypeId", "invoiceBilling"]}}
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", "properties": {"id": {"type": "string"}, "key": {"type": "string"}, "displayName": {"type": "string"}, "permissionLevel": {"type": "string"}, "description": {"type": "string"}, "dependsOn": {"type": "string"}, "rolePermission": {"type": "object", "properties": {"granted": {"type": "boolean"}, "readOnly": {"type": "boolean"}}, "required": ["granted", "readOnly"]}}, "required": ["id", "key", "displayName", "permissionLevel", "description", "dependsOn", "rolePermission"]}}}, "required": ["id", "name", "description", "isDefault", "roleLevel", "isBasicRole", "permissions"]}}
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", "apiId", "status", "tagDefinitionId", "type", "value"]}
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": "string"}, "description": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "isOrgAdmin": {"type": "boolean"}, "isEnvAdmin": {"type": "boolean"}}, "required": ["id", "mashapeId", "thumbnail", "name", "slugifiedName", "description", "status"]}}
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": "string"}}, "required": ["id", "apiId", "status", "tagDefinitionId", "type", "value"]}}
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": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "userId": {"type": "string"}}, "required": ["id", "billingPlanId", "mashapeId", "status", "userId"]}}
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", "items": {"type": "string"}}, "blogPostId": {"type": "string"}, "orderCollectionItems": {"type": "array", "items": {"type": "string"}}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "ownerId": {"type": "string"}, "orgId": {"type": "string"}, "orgName": {"type": "string"}, "collectionType": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}}, "required": ["id", "name", "slugifiedName", "weight", "shortDescription", "longDescription", "thumbnail", "apis", "blogPostId", "orderCollectionItems", "ownerId", "orgId", "orgName", "collectionType", "status"]}}
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": {"description": "", "url": ""}}
{"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": "string"}, "code": {"type": "number"}, "group": {"type": "string"}, "route": {"type": "string"}, "endpointHash": {"type": "string"}, "response": {"type": "string"}, "payload": {"type": "string"}, "method": {"type": "string"}, "displayResponse": {"type": "boolean"}, "isGraphQL": {"type": "boolean"}, "isMockResponse": {"type": "boolean"}, "mockResponseId": {"type": "string"}, "externalDocs": {"type": "object", "properties": {"description": {"type": "string"}, "url": {"type": "string"}}, "required": ["description", "url"]}}, "required": ["id", "name", "description", "apiVersion", "code", "group", "route", "endpointHash", "response", "payload", "method", "displayResponse", "isGraphQL", "isMockResponse", "mockResponseId"]}
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"}}, "blogPostId": {"type": "string"}, "orderCollectionItems": {"type": "array", "items": {"type": "string"}}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "ownerId": {"type": "string"}, "orgId": {"type": "string"}, "orgName": {"type": "string"}, "collectionType": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}}, "required": ["id", "name", "slugifiedName", "weight", "shortDescription", "longDescription", "thumbnail", "apis", "blogPostId", "orderCollectionItems", "ownerId", "orgId", "orgName", "collectionType", "status"]}
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"}}, "required": ["id", "apiId", "index", "status", "text", "textModified", "type"]}}
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": {"description": "", "url": ""}}]
{"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"}, "apiVersion": {"type": "string"}, "code": {"type": "number"}, "group": {"type": "string"}, "route": {"type": "string"}, "endpointHash": {"type": "string"}, "response": {"type": "string"}, "payload": {"type": "string"}, "method": {"type": "string"}, "displayResponse": {"type": "boolean"}, "isGraphQL": {"type": "boolean"}, "isMockResponse": {"type": "boolean"}, "mockResponseId": {"type": "string"}, "externalDocs": {"type": "object", "properties": {"description": {"type": "string"}, "url": {"type": "string"}}, "required": ["description", "url"]}}, "required": ["id", "name", "description", "apiVersion", "code", "group", "route", "endpointHash", "response", "payload", "method", "displayResponse", "isGraphQL", "isMockResponse", "mockResponseId"]}}
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": {"granted": true, "readOnly": true}}]}}]
{"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": {"type": "string"}, "isDefault": {"type": "boolean"}, "roleLevel": {"type": "string"}, "isBasicRole": {"type": "boolean"}, "permissions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "key": {"type": "string"}, "displayName": {"type": "string"}, "permissionLevel": {"type": "string"}, "description": {"type": "string"}, "dependsOn": {"type": "string"}, "rolePermission": {"type": "object", "properties": {"granted": {"type": "boolean"}, "readOnly": {"type": "boolean"}}, "required": ["granted", "readOnly"]}}, "required": ["id", "key", "displayName", "permissionLevel", "description", "dependsOn", "rolePermission"]}}}, "required": ["id", "name", "description", "isDefault", "roleLevel", "isBasicRole", "permissions"]}}, "required": ["id", "entityId", "roleId", "orgId", "parentId"]}}
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", "PERUSE"], "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "type": {"type": "string"}, "visibility": {"enum": ["PUBLIC", "PRIVATE"], "type": "string"}}, "required": ["id", "billingPlan", "current", "name", "period", "price", "pricing", "status", "type", "visibility"]}
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"}, "shouldRequestApproval": {"type": "boolean"}, "requestApprovalQuestion": {"type": "string"}, "slugifiedName": {"type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "targetGroup": {"type": "string"}, "type": {"type": "string"}, "visibility": {"enum": ["PUBLIC", "PRIVATE"], "type": "string"}, "isStudent": {"type": "boolean"}}, "required": ["id", "name", "apiversion", "hidden", "legalAccountId", "legalDocumentId", "shouldRequestApproval", "requestApprovalQuestion", "slugifiedName", "status", "targetGroup", "type", "visibility", "isStudent"]}}
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": {"description": "", "url": ""}}
{"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": "string"}, "code": {"type": "number"}, "group": {"type": "string"}, "route": {"type": "string"}, "endpointHash": {"type": "string"}, "response": {"type": "string"}, "payload": {"type": "string"}, "method": {"type": "string"}, "displayResponse": {"type": "boolean"}, "isGraphQL": {"type": "boolean"}, "isMockResponse": {"type": "boolean"}, "mockResponseId": {"type": "string"}, "externalDocs": {"type": "object", "properties": {"description": {"type": "string"}, "url": {"type": "string"}}, "required": ["description", "url"]}}, "required": ["id", "name", "description", "apiVersion", "code", "group", "route", "endpointHash", "response", "payload", "method", "displayResponse", "isGraphQL", "isMockResponse", "mockResponseId"]}
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": "boolean"}, "name": {"type": "string"}, "requiredOnAPI": {"type": "boolean"}, "showTagName": {"type": "boolean"}, "updatedAt": {"format": "date-time", "type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}}, "required": ["id", "apiCount", "color", "description", "editableByProvider", "forceEnumValidation", "isVisible", "name", "requiredOnAPI", "showTagName", "values", "status"]}
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": "boolean"}, "isVisible": {"type": "boolean"}, "name": {"type": "string"}, "requiredOnAPI": {"type": "boolean"}, "showTagName": {"type": "boolean"}, "updatedAt": {"format": "date-time", "type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}}, "required": ["id", "apiCount", "color", "description", "editableByProvider", "forceEnumValidation", "isVisible", "name", "requiredOnAPI", "showTagName", "values", "status"]}}
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"}, "lastActive": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "createdAt": {"format": "date-time", "type": "string"}}, "required": ["id", "apiGatewayCodeTemplateId", "dns", "ip", "version", "deploymentKey", "type", "serviceStatus", "status"]}}
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": true, "facebookUsername": "", "facebookToken": "", "rememberMe": true, "followers": 0, "company": "", "position": "", "bio": "", "location": "", "lastActive": "", "lastActivePublic": true, "thumbnail": "", "name": "", "originSite": "", "username": "", "verified": true, "packages": 0, "discussions": 0, "createdAt": "", "updatedAt": "", "isCreatedUsingRapid": true, "twoFactorAuthData": [{"type": "", "isEnabled": true}]}]
{"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"}, "resetPasswordExpires": {"type": "boolean"}, "resetPasswordTokenUsed": {"type": "boolean"}, "gmail": {"type": "string"}, "googleToken": {"type": "string"}, "githubUsername": {"type": "string"}, "githubToken": {"type": "string"}, "rakutenToken": {"type": "string"}, "githubUrl": {"type": "string"}, "githubUrlPublic": {"type": "boolean"}, "facebookUsername": {"type": "string"}, "facebookToken": {"type": "string"}, "rememberMe": {"type": "boolean"}, "followers": {"type": "number"}, "company": {"type": "string"}, "position": {"type": "string"}, "bio": {"type": "string"}, "location": {"type": "string"}, "lastActive": {"type": "string"}, "lastActivePublic": {"type": "boolean"}, "thumbnail": {"type": "string"}, "name": {"type": "string"}, "originSite": {"type": "string"}, "username": {"type": "string"}, "verified": {"type": "boolean"}, "packages": {"type": "number"}, "discussions": {"type": "number"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "isCreatedUsingRapid": {"type": "boolean"}, "twoFactorAuthData": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "isEnabled": {"type": "boolean"}}, "required": ["type", "isEnabled"]}}}, "required": ["id", "status", "mashapeId", "email", "emailPublic", "password", "resetPasswordToken", "resetPasswordExpires", "resetPasswordTokenUsed", "gmail", "googleToken", "githubUsername", "githubToken", "rakutenToken", "githubUrl", "githubUrlPublic", "facebookUsername", "facebookToken", "rememberMe", "followers", "company", "position", "bio", "location", "lastActive", "lastActivePublic", "thumbnail", "name", "originSite", "username", "verified", "packages", "discussions", "isCreatedUsingRapid"]}}
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"}, "updatedAt": {"format": "date-time", "type": "string"}, "weight": {"type": "number"}}, "required": ["id", "longDescription", "name", "shortDescription", "slugifiedName", "status", "type", "weight"]}
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"}, "latency": {"type": "number"}, "date": {"type": "string"}}, "required": ["apiversion", "apiid", "endpointHash", "requests", "errors", "latency", "date"]}}}, "required": ["apiId", "data"]}}
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": {"format": "date-time", "type": "string"}}, "required": ["id", "mashapeId", "ownerId", "name", "description", "thumbnail", "favorite"]}
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": {"type": "string"}, "createdAt": {"format": "date-time", "type": "string"}, "updatedAt": {"format": "date-time", "type": "string"}, "deletedAt": {"format": "date-time", "type": "string"}, "status": {"enum": ["ACTIVE", "DELETED"], "type": "string"}, "isOrgAdmin": {"type": "boolean"}, "isEnvAdmin": {"type": "boolean"}}, "required": ["id", "mashapeId", "thumbnail", "name", "slugifiedName", "description", "status"]}
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", "previous": "17", "date": "Dec/21", "unit": "%"}]
{"$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", "previous": "17", "date": "Dec/21", "unit": "%"}]
{"$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"]}}