> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.gorilladash.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.gorilladash.com/_mcp/server.

# Get Enquiry Form

GET https://api.gorilladash.com/api/v1/enquiry-forms/{slug}

Reference: https://docs.gorilladash.com/gorilla-dash-rest-ful-api/enquiries/get-enquiry-form

## Authentication

- `GorillaDash-Api-Key` header (required) — Gorilla Dash API Key. Issued per organisation or tribe.
- `GorillaDash-Api-Secret` header (required) — Gorilla Dash API Secret. Sent alongside the API key on every request.

## Request

### Path parameters

- `slug` (string, required) — Slug of the enquiry form.

### Headers

- `X-Requested-With` (string, optional)

## Response

### 201

Created

- `status` (integer, required)
- `success` (boolean, required)
- `data` (object, required)
  - `name` (string, required)
  - `slug` (string, required)
  - `fields` (list of object, required)
    - `name` (string, required)
    - `type` (string, required)
    - `value` (any, optional)

## Examples

**Response**

```json
{
  "status": 201,
  "success": true,
  "data": {
    "name": "Signarama Inquiry Form",
    "slug": "Signarama Inquiry Form",
    "fields": [
      {
        "name": "Message",
        "type": "Text"
      },
      {
        "name": "Business Name",
        "type": "Text"
      },
      {
        "name": "Form",
        "type": "Text"
      },
      {
        "name": "Spam",
        "type": "Text"
      },
      {
        "name": "Product Type",
        "type": "Text"
      },
      {
        "name": "Captcha Result",
        "type": "Text"
      },
      {
        "name": "Contains Link",
        "type": "Text"
      }
    ]
  }
}
```

**SDK Code**

```python Enquiries_Get Enquiry Form_example
import requests

url = "https://api.gorilladash.com/api/v1/enquiry-forms/slug"

headers = {
    "X-Requested-With": "XMLHttpRequest",
    "GorillaDash-Api-Key": "<apiKey>"
}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript Enquiries_Get Enquiry Form_example
const url = 'https://api.gorilladash.com/api/v1/enquiry-forms/slug';
const options = {
  method: 'GET',
  headers: {'X-Requested-With': 'XMLHttpRequest', 'GorillaDash-Api-Key': '<apiKey>'}
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Enquiries_Get Enquiry Form_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.gorilladash.com/api/v1/enquiry-forms/slug"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-Requested-With", "XMLHttpRequest")
	req.Header.Add("GorillaDash-Api-Key", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Enquiries_Get Enquiry Form_example
require 'uri'
require 'net/http'

url = URI("https://api.gorilladash.com/api/v1/enquiry-forms/slug")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-Requested-With"] = 'XMLHttpRequest'
request["GorillaDash-Api-Key"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java Enquiries_Get Enquiry Form_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.gorilladash.com/api/v1/enquiry-forms/slug")
  .header("X-Requested-With", "XMLHttpRequest")
  .header("GorillaDash-Api-Key", "<apiKey>")
  .asString();
```

```php Enquiries_Get Enquiry Form_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.gorilladash.com/api/v1/enquiry-forms/slug', [
  'headers' => [
    'GorillaDash-Api-Key' => '<apiKey>',
    'X-Requested-With' => 'XMLHttpRequest',
  ],
]);

echo $response->getBody();
```

```csharp Enquiries_Get Enquiry Form_example
using RestSharp;

var client = new RestClient("https://api.gorilladash.com/api/v1/enquiry-forms/slug");
var request = new RestRequest(Method.GET);
request.AddHeader("X-Requested-With", "XMLHttpRequest");
request.AddHeader("GorillaDash-Api-Key", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift Enquiries_Get Enquiry Form_example
import Foundation

let headers = [
  "X-Requested-With": "XMLHttpRequest",
  "GorillaDash-Api-Key": "<apiKey>"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.gorilladash.com/api/v1/enquiry-forms/slug")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```