Splunk Dev

API Auth and Search Script

martillo_300
Explorer

Hello Experts, I'm trying to create a python script to run adhoc searches via a api request but the documentation has me opening webpages after webpages. I've created a token already. Can someone please help me with this task? Thank you in advance,Splunk Search

Labels (2)
0 Karma
1 Solution

martillo_300
Explorer

That worked! Thank you so much. This is exactly what I was needing. 

View solution in original post

0 Karma

marnall
Builder

Try modifying this CURL request to your needs (adjust the endpoint, search, and token)

curl -k -H 'Authorization: Splunk <your_token_here>' https://your_searchhead_here:8089/services/search/v2/jobs/export -d search="search index=* | head 10 | table host"

 

0 Karma

martillo_300
Explorer

Thanks. Is there a count that I can limit this to? I makes the call but never comes back with data where I have to kill the process. 

0 Karma

marnall
Builder

The /export endpoint will dispatch a search and then retrieve the results when the search is completed. If the search takes a lot of time, then likely the request will time out. You can either make your search faster or you can use two endpoints, one where you dispatch the search and another endpoint where you later retrieve the results.

To dispatch the search:

curl -k -H 'Authorization: Splunk <your_token_here>' https://your_searchhead_here:8089/services/search/jobs -d search="search index=* | head 10 | table host"

The above call will return you a search id (sid), which you'll need in the following call to retrieve the results:

curl -k -H 'Authorization: Splunk <your_token_here>' https://your_searchhead_here:8089/services/search/<yoursidhere>/results

Ref: https://docs.splunk.com/Documentation/Splunk/latest/RESTTUT/RESTsearches

0 Karma

martillo_300
Explorer

That worked! Thank you so much. This is exactly what I was needing. 

0 Karma
Get Updates on the Splunk Community!

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...

New Articles from Academic Learning Partners, Help Expand Lantern’s Use Case Library, ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...