WordPress has the HTTP API that you could perhaps use to send POST (wp_remote_post
) or GET (wp_remote_get
) requests to an API, https://developer.wordpress.org/plugins/http-api/. But you could also use cURL to send the requests, I think.
If the API is developed by you, then it’s up to you to decide what kind of arguments the API accepts/expects and what kind of authentication it requires. If it’s some 3rd party API, then you need to consult the API documentation to see what is needed to get a response from it and in which form you’ll get the response – e.g. is it a JSON response.
Or if you can skip the API and connect directly to the database, then you could perhaps use $wpdb
to do it as described here, Using wpdb to connect to a separate database
Related Posts:
- Get all tags not just first 10 with wp api 2.0
- Sending posts from Python to WordPress
- What is the proper way to validate and sanitize JSON response from REST API?
- Data storage for JS app using WP REST API
- Building a REST API for your web app exposes primary keys of DB records?
- How to access a table in a wordpress database using REST API?
- How to rerieve comments and their replies from DB
- Options of accessing wordpress data from mobile app
- If an Application Password is accidentally revoked, is there any way to restore it?
- large number (bigint) for post ID issue in database
- What is an ORM, how does it work, and how should I use one? [closed]
- What is the difference between an ORM and an ODM?
- What is this JavaScript “require”?
- Rename a table in MySQL
- How should I tackle –secure-file-priv in MySQL?
- What is this JavaScript “require”?
- What is “Advanced” SQL?
- What’s the difference between identifying and non-identifying relationships?
- Can’t connect to MySQL server on ‘127.0.0.1’ (10061) (2003)
- Can’t connect to MySQL server on ‘127.0.0.1’ (10061) (2003)
- Can’t connect to MySQL server on ‘127.0.0.1’ (10061) (2003)
- What are the differences between B trees and B+ trees?
- MySQL SELECT increment counter
- How to resolve ORA-011033: ORACLE initialization or shutdown in progress
- Example of a strong and weak entity types
- Oracle SQL query for Date format
- phpMyAdmin – Error > Incorrect format parameter?
- Strange Characters in database text: Ã, Ã, ¢, â‚ €,
- Difference between partition key, composite key and clustering key in Cassandra?
- How SID is different from Service name in Oracle tnsnames.ora
- What is a relation in database terminology?
- Failed to connect to mysql at 127.0.0.1:3306 with user root access denied for user ‘root’@’localhost'(using password:YES)
- Database vs File system storage
- Can I have multiple primary keys in a single table?
- Exclude Statement in SQL
- How do you query for “is not null” in Mongo?
- What is a file based database?
- Is it fine to have foreign key as primary key?
- Storing Images in DB – Yea or Nay?
- Using wpdb to connect to a separate database
- how to Optimize WordPress database for 10 million post? [duplicate]
- MySQL Database User: Which Privileges are needed?
- Why is my database import losing text widget data?
- Database synchronization between dev/staging and production
- Keeping WP database synced across multiple developers using git
- WPDB Insert or if exists Update
- Multiple developers / editors working on a site in progress
- WordPress Rest API custom endpoint optional param
- How can I make updates to a site, on a development copy, but then move updates back without overriding live site’s evolving database?
- Using the Rewrite API to Construct a RESTful URL
- get_results using wpdb
- Will it break my site if I delete all transient records in wp_options table?
- Checking if Database Table exists
- Why WordPress choose data serialization over json_encode?
- What’s the simplest way to backup my WordPress database?
- WordPress (MyISAM) database is slow, should I switch to InnoDB?
- $wpdb won’t insert NULL into table column
- Relaunch 4.2 utf8mb4 database upgrade
- Fastest way (least amount of steps) to locally import a remote database using WP-CLI
- Safest way to bulk delete post revisions
- Please explain how WordPress works with MySQL character set and collation at a low level
- Solution for database version control and deployment?
- The MySQL alternatives: Do Percona Server and MariaDB work well with WordPress, and do they make WordPress go better?
- How many users can WordPress handle?
- Get error messages when $wpdb->insert() returns false?
- Detecting errors generated by $wpdb->get_results()
- Staging sites, how do you manage synchronising updates in the DB?
- Does dbDelta delete columns as well?
- How to get the post publish date outside the loop?
- MariaDB as a backend database
- wpdb update add current timestamp not working
- Site stuck in “Database Update Required” loop
- How to fetch Data in WordPress using MySQLi or $wpdb
- Query WP REST API v2 by multiple meta keys
- WordPress Database lost auto increment
- Count & Display Database Queries
- Connect to database using wordpress wp-config file
- How can I make a WordPress database portable and url independent?
- Are There Any Plans for WordPress to Support Databases Other Than MySQL?
- wpdb->insert multiple record at once
- How to migrate a HTTPS WordPress installation to localhost?
- Two WordPress sites sharing the same content
- How to integrate custom database table in WordPress and using WordPress functions
- Reset Post IDs to less than 64bit integer
- WP Multisite: load content from site X on site Y
- How do I cache (core) API requests?
- WP REST API only returning partial list of users
- How To Export/Import WordPress (MySQL) Database Properly Via Command-Line?
- Custom form that store input in database
- Fetch All Posts (Including Those Using a Custom Post Type) With WordPress API
- Restoring WordPress posts from database only
- WP REST API no longer supports filter param, so how do I get posts in a custom taxonomy?
- What is the purpose of the option name hack_file in the options table?
- Where can I find the database changes between WordPress versions?
- Automate WordPress Database Upgrade
- Is there a way to get protected meta fields through any of the available built-in WordPress APIs? (xmlrpc, wp-json)
- Database connection close
- WordPress database error with latest WP – “WP_termmeta doesn’t exist”
- WordPress database scalability from the code perspective
- WordPress Unit Testing – Cannot Create Tables