Getting Data In

How can I search a specific index via the API using curl?

msmapper
Path Finder

How can I search a specific index via the API using curl? When I try to use
curl -u user:pass -k -d 'search=search index="indexname" OR curl -u user:pass -k -d 'search=search index="indexname"

I get results but the following messages returned...
No Matching index found for 'index=indexname'
No mmatching index found for index::indexname

Any help would be appreciated..

Tags (4)
1 Solution

ineeman
Splunk Employee
Splunk Employee

The problem here is because your request isn't URL encoded. Specifically, your:

search index="indexname"

Needs to be URL encoded. You can easily fix this by doing:

curl -k -u admin:changeme https://localhost:8089/services/search/jobs --data-urlencode 'search=search index="_internal" | head 1'

View solution in original post

ineeman
Splunk Employee
Splunk Employee

The problem here is because your request isn't URL encoded. Specifically, your:

search index="indexname"

Needs to be URL encoded. You can easily fix this by doing:

curl -k -u admin:changeme https://localhost:8089/services/search/jobs --data-urlencode 'search=search index="_internal" | head 1'
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...